Support ELF symbol visibility property
authorDodji Seketeli <dodji@redhat.com>
Mon, 12 Jun 2017 09:24:20 +0000 (11:24 +0200)
committerDodji Seketeli <dodji@redhat.com>
Mon, 3 Jul 2017 15:45:47 +0000 (17:45 +0200)
This patch models the ELF symbol visibility property and support
ignoring function and variable symbols that are HIDDEN and INTERNAL,
even if they have default binding.

* include/abg-ir.h (enum elf_symbol::visibility): Define new enum.
(elf_symbol::{elf_symbol, create}): Take a visibility parameter.
(elf_symbol::{set, get}_visibility): Declare new accessors.
(string_to_elf_symbol_binding): Declare new function.
* src/abg-ir.cc (elf_symbol::priv::visibility_): New data member.
(elf_symbol::priv::priv): Adjust.
(elf_symbol::elf_symbol): Take a visibility parameter.
(elf_symbol::create): Likewise
(elf_symbol::{s,g}et_visibility): Define new accessors.
(elf_symbol::is_public): Adjust.
(operator<<(std::ostream&, elf_symbol::visibility)): Define new
operator.
(string_to_elf_symbol_visibility): Define new function.
* src/abg-dwarf-reader.cc (stv_to_elf_symbol_visibility): Define
new static function.
(lookup_symbol_from_sysv_hash_tab)
(lookup_symbol_from_gnu_hash_tab, lookup_symbol_from_symtab)
(create_default_var_sym, create_default_fn_sym): Adjust.
* src/abg-reader.cc (read_elf_symbol_binding): Define new
function.
(build_elf_symbol): Adjust.
* src/abg-writer.cc (write_elf_symbol_visibility): Define new
function.
* tests/data/test-annotate/libtest23.so.abi: Adjust.
* tests/data/test-annotate/libtest24-drop-fns-2.so.abi: Adjust.
* tests/data/test-annotate/libtest24-drop-fns.so.abi: Adjust.
* tests/data/test-annotate/test0.abi: Adjust.
* tests/data/test-annotate/test1.abi: Adjust.
* tests/data/test-annotate/test13-pr18894.so.abi: Adjust.
* tests/data/test-annotate/test14-pr18893.so.abi: Adjust.
* tests/data/test-annotate/test15-pr18892.so.abi: Adjust.
* tests/data/test-annotate/test17-pr19027.so.abi: Adjust.
* tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
Adjust.
* tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi:
Adjust.
* tests/data/test-annotate/test2.so.abi: Adjust.
* tests/data/test-annotate/test20-pr19025-libvtkParallelCore-6.1.so.abi:
Adjust.
* tests/data/test-annotate/test21-pr19092.so.abi: Adjust.
* tests/data/test-annotate/test3.so.abi: Adjust.
* tests/data/test-annotate/test4.so.abi: Adjust.
* tests/data/test-annotate/test5.o.abi: Adjust.
* tests/data/test-annotate/test6.so.abi: Adjust.
* tests/data/test-annotate/test7.so.abi: Adjust.
* tests/data/test-annotate/test8-qualified-this-pointer.so.abi:
Adjust.
* tests/data/test-read-dwarf/libtest23.so.abi: Adjust.
* tests/data/test-read-dwarf/libtest24-drop-fns-2.so.abi: Adjust.
* tests/data/test-read-dwarf/libtest24-drop-fns.so.abi: Adjust.
* tests/data/test-read-dwarf/test0.abi: Adjust.
* tests/data/test-read-dwarf/test1.abi: Adjust.
* tests/data/test-read-dwarf/test10-pr18818-gcc.so.abi: Adjust.
* tests/data/test-read-dwarf/test11-pr18828.so.abi: Adjust.
* tests/data/test-read-dwarf/test12-pr18844.so.abi: Adjust.
* tests/data/test-read-dwarf/test13-pr18894.so.abi: Adjust.
* tests/data/test-read-dwarf/test14-pr18893.so.abi: Adjust.
* tests/data/test-read-dwarf/test15-pr18892.so.abi: Adjust.
* tests/data/test-read-dwarf/test16-pr18904.so.abi: Adjust.
* tests/data/test-read-dwarf/test17-pr19027.so.abi: Adjust.
* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi:
Adjust.
* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi:
Adjust.
* tests/data/test-read-dwarf/test2.so.abi: Adjust.
* tests/data/test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi:
Adjust.
* tests/data/test-read-dwarf/test21-pr19092.so.abi: Adjust.
* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi:
Adjust.
* tests/data/test-read-dwarf/test3.so.abi: Adjust.
* tests/data/test-read-dwarf/test4.so.abi: Adjust.
* tests/data/test-read-dwarf/test5.o.abi: Adjust.
* tests/data/test-read-dwarf/test6.so.abi: Adjust.
* tests/data/test-read-dwarf/test7.so.abi: Adjust.
* tests/data/test-read-dwarf/test8-qualified-this-pointer.so.abi:
Adjust.
* tests/data/test-read-dwarf/test9-pr18818-clang.so.abi: Adjust.
* tests/data/test-read-write/test26.xml: Adjust.
* tests/data/test-read-write/test27.xml: Adjust.
* tests/data/test-read-write/test28-without-std-fns-ref.xml:
Adjust.
* tests/data/test-read-write/test28-without-std-vars-ref.xml:
Adjust.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
55 files changed:
include/abg-ir.h
src/abg-dwarf-reader.cc
src/abg-ir.cc
src/abg-reader.cc
src/abg-writer.cc
tests/data/test-annotate/libtest23.so.abi
tests/data/test-annotate/libtest24-drop-fns-2.so.abi
tests/data/test-annotate/libtest24-drop-fns.so.abi
tests/data/test-annotate/test0.abi
tests/data/test-annotate/test1.abi
tests/data/test-annotate/test13-pr18894.so.abi
tests/data/test-annotate/test14-pr18893.so.abi
tests/data/test-annotate/test15-pr18892.so.abi
tests/data/test-annotate/test17-pr19027.so.abi
tests/data/test-annotate/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
tests/data/test-annotate/test19-pr19023-libtcmalloc_and_profiler.so.abi
tests/data/test-annotate/test2.so.abi
tests/data/test-annotate/test20-pr19025-libvtkParallelCore-6.1.so.abi
tests/data/test-annotate/test21-pr19092.so.abi
tests/data/test-annotate/test3.so.abi
tests/data/test-annotate/test4.so.abi
tests/data/test-annotate/test5.o.abi
tests/data/test-annotate/test6.so.abi
tests/data/test-annotate/test7.so.abi
tests/data/test-annotate/test8-qualified-this-pointer.so.abi
tests/data/test-read-dwarf/libtest23.so.abi
tests/data/test-read-dwarf/libtest24-drop-fns-2.so.abi
tests/data/test-read-dwarf/libtest24-drop-fns.so.abi
tests/data/test-read-dwarf/test0.abi
tests/data/test-read-dwarf/test1.abi
tests/data/test-read-dwarf/test10-pr18818-gcc.so.abi
tests/data/test-read-dwarf/test11-pr18828.so.abi
tests/data/test-read-dwarf/test12-pr18844.so.abi
tests/data/test-read-dwarf/test13-pr18894.so.abi
tests/data/test-read-dwarf/test14-pr18893.so.abi
tests/data/test-read-dwarf/test15-pr18892.so.abi
tests/data/test-read-dwarf/test16-pr18904.so.abi
tests/data/test-read-dwarf/test17-pr19027.so.abi
tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
tests/data/test-read-dwarf/test2.so.abi
tests/data/test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi
tests/data/test-read-dwarf/test21-pr19092.so.abi
tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
tests/data/test-read-dwarf/test3.so.abi
tests/data/test-read-dwarf/test4.so.abi
tests/data/test-read-dwarf/test5.o.abi
tests/data/test-read-dwarf/test6.so.abi
tests/data/test-read-dwarf/test7.so.abi
tests/data/test-read-dwarf/test8-qualified-this-pointer.so.abi
tests/data/test-read-dwarf/test9-pr18818-clang.so.abi
tests/data/test-read-write/test26.xml
tests/data/test-read-write/test27.xml
tests/data/test-read-write/test28-without-std-fns-ref.xml
tests/data/test-read-write/test28-without-std-vars-ref.xml

index 095caefc27491d94976ed58b1410ff4973f267e2..540a7cd328b42f4b82b4ee5784a6467e524510b4 100644 (file)
@@ -651,6 +651,15 @@ public:
     GNU_UNIQUE_BINDING
   };
 
+  /// The visibility of the symbol.
+  enum visibility
+  {
+    DEFAULT_VISIBILITY,
+    PROTECTED_VISIBILITY,
+    HIDDEN_VISIBILITY,
+    INTERNAL_VISIBILITY,
+  };
+
   /// Inject the elf_symbol::version here.
   class version;
 
@@ -668,7 +677,8 @@ private:
             binding            b,
             bool               d,
             bool               c,
-            const version&     v);
+            const version&     ve,
+            visibility vi);
 
   elf_symbol(const elf_symbol&);
 
@@ -689,7 +699,8 @@ public:
         binding                b,
         bool                   d,
         bool                   c,
-        const version& v);
+        const version& ve,
+        visibility             vi);
 
   const environment*
   get_environment() const;
@@ -733,6 +744,12 @@ public:
   void
   set_version(const version& v);
 
+  void
+  set_visibility(visibility v);
+
+  visibility
+  get_visibility() const;
+
   bool
   is_defined() const;
 
@@ -821,6 +838,9 @@ string_to_elf_symbol_type(const string&, elf_symbol::type&);
 bool
 string_to_elf_symbol_binding(const string&, elf_symbol::binding&);
 
+bool
+string_to_elf_symbol_visibility(const string&, elf_symbol::visibility&);
+
 bool
 operator==(const elf_symbol_sptr& lhs, const elf_symbol_sptr& rhs);
 
index e96e942a51516c4e58b10b0bad77ce4752be7421..f6faa34ef7fc994f326a4e068f6c5bb7ed298bd2 100644 (file)
@@ -542,6 +542,40 @@ stb_to_elf_symbol_binding(unsigned char stb)
 
 }
 
+/// Convert an ELF symbol visiblity given by the symbols ->st_other
+/// data member as returned by the GELF_ST_VISIBILITY macro into a
+/// elf_symbol::visiblity value.
+///
+/// @param stv the value of the ->st_other data member of the ELF
+/// symbol.
+///
+/// @return the converted elf_symbol::visiblity value.
+static elf_symbol::visibility
+stv_to_elf_symbol_visibility(unsigned char stv)
+{
+
+  elf_symbol::visibility v = elf_symbol::DEFAULT_VISIBILITY;
+
+  switch (stv)
+    {
+    case STV_DEFAULT:
+      v = elf_symbol::DEFAULT_VISIBILITY;
+      break;
+    case STV_INTERNAL:
+      v = elf_symbol::INTERNAL_VISIBILITY;
+      break;
+    case STV_HIDDEN:
+      v = elf_symbol::HIDDEN_VISIBILITY;
+      break;
+    case STV_PROTECTED:
+      v = elf_symbol::PROTECTED_VISIBILITY;
+    default:
+      ABG_ASSERT_NOT_REACHED;
+    }
+
+  return v;
+}
+
 /// Convert the value of the e_machine field of GElf_Ehdr into a
 /// string.  This is to get a string representing the architecture of
 /// the elf file at hand.
@@ -1531,6 +1565,7 @@ lookup_symbol_from_sysv_hash_tab(const environment*               env,
   size_t sym_size;
   elf_symbol::type sym_type;
   elf_symbol::binding sym_binding;
+  elf_symbol::visibility sym_visibility;
   bool found = false;
 
   do
@@ -1544,6 +1579,8 @@ lookup_symbol_from_sysv_hash_tab(const environment*               env,
        {
          sym_type = stt_to_elf_symbol_type(GELF_ST_TYPE(symbol.st_info));
          sym_binding = stb_to_elf_symbol_binding(GELF_ST_BIND(symbol.st_info));
+         sym_visibility =
+           stv_to_elf_symbol_visibility(GELF_ST_VISIBILITY(symbol.st_other));
          sym_size = symbol.st_size;
          elf_symbol::version ver;
          if (get_version_for_symbol(elf_handle, symbol_index,
@@ -1558,7 +1595,7 @@ lookup_symbol_from_sysv_hash_tab(const environment*               env,
                               sym_binding,
                               symbol.st_shndx != SHN_UNDEF,
                               symbol.st_shndx == SHN_COMMON,
-                              ver);
+                              ver, sym_visibility);
          syms_found.push_back(symbol_found);
          found = true;
        }
@@ -1791,6 +1828,7 @@ lookup_symbol_from_gnu_hash_tab(const environment*                env,
 
   elf_symbol::type sym_type;
   elf_symbol::binding sym_binding;
+  elf_symbol::visibility sym_visibility;
 
   // Let's walk the hash table and record the versions of all the
   // symbols which name equal sym_name.
@@ -1820,6 +1858,8 @@ lookup_symbol_from_gnu_hash_tab(const environment*                env,
          // sym_name.  Now lets try to get its version and record it.
          sym_type = stt_to_elf_symbol_type(GELF_ST_TYPE(symbol.st_info));
          sym_binding = stb_to_elf_symbol_binding(GELF_ST_BIND(symbol.st_info));
+        sym_visibility =
+          stv_to_elf_symbol_visibility(GELF_ST_VISIBILITY(symbol.st_other));
 
          if (get_version_for_symbol(elf_handle, i,
                                     /*get_def_version=*/true,
@@ -1831,7 +1871,7 @@ lookup_symbol_from_gnu_hash_tab(const environment*                env,
                               sym_type, sym_binding,
                               symbol.st_shndx != SHN_UNDEF,
                               symbol.st_shndx == SHN_COMMON,
-                              ver);
+                              ver, sym_visibility);
          syms_found.push_back(symbol_found);
          found = true;
        }
@@ -1969,8 +2009,11 @@ lookup_symbol_from_symtab(const environment*             env,
            stt_to_elf_symbol_type(GELF_ST_TYPE(sym->st_info));
          elf_symbol::binding sym_binding =
            stb_to_elf_symbol_binding(GELF_ST_BIND(sym->st_info));
+         elf_symbol::visibility sym_visibility =
+           stv_to_elf_symbol_visibility(GELF_ST_VISIBILITY(sym->st_other));
          bool sym_is_defined = sym->st_shndx != SHN_UNDEF;
          bool sym_is_common = sym->st_shndx == SHN_COMMON;
+
          if (get_version_for_symbol(elf_handle, i,
                                     /*get_def_version=*/sym_is_defined,
                                     ver))
@@ -1979,7 +2022,7 @@ lookup_symbol_from_symtab(const environment*              env,
            elf_symbol::create(env, i, sym->st_size,
                               name_str, sym_type,
                               sym_binding, sym_is_defined,
-                              sym_is_common, ver);
+                              sym_is_common, ver, sym_visibility);
          syms_found.push_back(symbol_found);
          found = true;
        }
@@ -5718,16 +5761,19 @@ public:
     if (name_str == 0)
       name_str = "";
 
-    elf_symbol::version v;
+    elf_symbol::version ver;
     get_version_for_symbol(symbol_index,
                           sym_is_defined,
-                          v);
+                          ver);
+
+    elf_symbol::visibility vis =
+      stv_to_elf_symbol_visibility(GELF_ST_VISIBILITY(s->st_other));
 
     elf_symbol_sptr sym =
       elf_symbol::create(env(), symbol_index, s->st_size, name_str,
                         stt_to_elf_symbol_type(GELF_ST_TYPE(s->st_info)),
                         stb_to_elf_symbol_binding(GELF_ST_BIND(s->st_info)),
-                        sym_is_defined, sym_is_common, v);
+                        sym_is_defined, sym_is_common, ver, vis);
     return sym;
   }
 
@@ -14021,6 +14067,7 @@ static elf_symbol_sptr
 create_default_var_sym(const string& sym_name, const environment *env)
 {
   elf_symbol::version ver;
+  elf_symbol::visibility vis = elf_symbol::DEFAULT_VISIBILITY;
   elf_symbol_sptr result =
     elf_symbol::create(env,
                       /*symbol index=*/ 0,
@@ -14030,7 +14077,8 @@ create_default_var_sym(const string& sym_name, const environment *env)
                       /*symbol binding=*/ elf_symbol::GLOBAL_BINDING,
                       /*symbol is defined=*/ true,
                       /*symbol is common=*/ false,
-                      /*symbol version=*/ ver);
+                      /*symbol version=*/ ver,
+                      /*symbol_visibility=*/vis);
   return result;
 }
 
@@ -14346,7 +14394,8 @@ create_default_fn_sym(const string& sym_name, const environment *env)
                       /*symbol binding=*/ elf_symbol::GLOBAL_BINDING,
                       /*symbol is defined=*/ true,
                       /*symbol is common=*/ false,
-                      /*symbol version=*/ ver);
+                      /*symbol version=*/ ver,
+                      /*symbol visibility=*/elf_symbol::DEFAULT_VISIBILITY);
   return result;
 }
 
index 35431cdd4f99b94c8fa1d4fec6c1af02b0e591a4..89a72f56f7a27a8ef98f96a9f313da803f2d927f 100644 (file)
@@ -1085,6 +1085,7 @@ struct elf_symbol::priv
   elf_symbol::type     type_;
   elf_symbol::binding  binding_;
   elf_symbol::version  version_;
+  elf_symbol::visibility visibility_;
   bool                 is_defined_;
   // This flag below says if the symbol is a common elf symbol.  In
   // relocatable files, a common symbol is a symbol defined in a
@@ -1126,6 +1127,7 @@ struct elf_symbol::priv
       size_(),
       type_(elf_symbol::NOTYPE_TYPE),
       binding_(elf_symbol::GLOBAL_BINDING),
+      visibility_(elf_symbol::DEFAULT_VISIBILITY),
       is_defined_(false),
       is_common_(false)
   {}
@@ -1138,14 +1140,16 @@ struct elf_symbol::priv
        elf_symbol::binding             b,
        bool                            d,
        bool                            c,
-       const elf_symbol::version&      v)
+       const elf_symbol::version&      ve,
+       elf_symbol::visibility          vi)
     : env_(e),
       index_(i),
       size_(s),
       name_(n),
       type_(t),
       binding_(b),
-      version_(v),
+      version_(ve),
+      visibility_(vi),
       is_defined_(d),
       is_common_(c)
   {
@@ -1187,7 +1191,9 @@ elf_symbol::elf_symbol()
 ///
 /// @param c true if the symbol is a common symbol, false otherwise.
 ///
-/// @param v the version of the symbol.
+/// @param ve the version of the symbol.
+///
+/// @param vi the visibility of the symbol.
 elf_symbol::elf_symbol(const environment*      e,
                       size_t                   i,
                       size_t                   s,
@@ -1196,8 +1202,9 @@ elf_symbol::elf_symbol(const environment* e,
                       binding                  b,
                       bool                     d,
                       bool                     c,
-                      const version&           v)
-  : priv_(new priv(e, i, s, n, t, b, d, c, v))
+                      const version&           ve,
+                      visibility               vi)
+  : priv_(new priv(e, i, s, n, t, b, d, c, ve, vi))
 {}
 
 /// Factory of instances of @ref elf_symbol.
@@ -1234,7 +1241,9 @@ elf_symbol::create()
 ///
 /// @param c true if the symbol is a common symbol.
 ///
-/// @param v the version of the symbol.
+/// @param ve the version of the symbol.
+///
+/// @param vi the visibility of the symbol.
 ///
 /// @return a (smart) pointer to a newly created instance of @ref
 /// elf_symbol.
@@ -1247,9 +1256,10 @@ elf_symbol::create(const environment*    e,
                   binding              b,
                   bool         d,
                   bool         c,
-                  const version&       v)
+                  const version&       ve,
+                  visibility           vi)
 {
-  elf_symbol_sptr sym(new elf_symbol(e, i, s, n, t, b, d, c, v));
+  elf_symbol_sptr sym(new elf_symbol(e, i, s, n, t, b, d, c, ve, vi));
   sym->priv_->main_symbol_ = sym;
   return sym;
 }
@@ -1389,6 +1399,22 @@ elf_symbol::set_version(const version& v)
   priv_->id_string_.clear();
 }
 
+/// Setter of the visibility of the current instance of @ref
+/// elf_symbol.
+///
+/// @param v the new visibility of the elf symbol.
+void
+elf_symbol::set_visibility(visibility v)
+{priv_->visibility_ = v;}
+
+/// Getter of the visibility of the current instance of @ref
+/// elf_symbol.
+///
+/// @return the visibility of the elf symbol.
+elf_symbol::visibility
+elf_symbol::get_visibility() const
+{return priv_->visibility_;}
+
 /// Test if the current instance of @ref elf_symbol is defined or not.
 ///
 /// @return true if the current instance of @ref elf_symbol is
@@ -1407,7 +1433,8 @@ elf_symbol::is_defined(bool d)
 
 /// Test if the current instance of @ref elf_symbol is public or not.
 ///
-/// This tests if the symbol defined, and either
+/// This tests if the symbol is defined, has default or protected
+///visibility, and either:
 ///            - has global binding
 ///            - has weak binding
 ///            - or has a GNU_UNIQUE binding.
@@ -1420,7 +1447,9 @@ elf_symbol::is_public() const
   return (is_defined()
          && (get_binding() == GLOBAL_BINDING
              || get_binding() == WEAK_BINDING
-             || get_binding() == GNU_UNIQUE_BINDING));
+             || get_binding() == GNU_UNIQUE_BINDING)
+         && (get_visibility() == DEFAULT_VISIBILITY
+             || get_visibility() == PROTECTED_VISIBILITY));
 }
 
 /// Test if the current instance of @ref elf_symbol is a function
@@ -2020,7 +2049,7 @@ operator<<(std::ostream& o, elf_symbol::type t)
 ///
 /// @param o the output stream to serialize the symbole type to.
 ///
-/// @param t the symbol binding to serialize.
+/// @param b the symbol binding to serialize.
 std::ostream&
 operator<<(std::ostream& o, elf_symbol::binding b)
 {
@@ -2053,6 +2082,44 @@ operator<<(std::ostream& o, elf_symbol::binding b)
   return o;
 }
 
+/// Serialize an instance of @ref elf_symbol::visibility and stream it
+/// to a given output stream.
+///
+/// @param o the output stream to serialize the symbole type to.
+///
+/// @param v the symbol visibility to serialize.
+std::ostream&
+operator<<(std::ostream& o, elf_symbol::visibility v)
+{
+  string repr;
+
+  switch (v)
+    {
+    case elf_symbol::DEFAULT_VISIBILITY:
+      repr = "default visibility";
+      break;
+    case elf_symbol::PROTECTED_VISIBILITY:
+      repr = "protected visibility";
+      break;
+    case elf_symbol::HIDDEN_VISIBILITY:
+      repr = "hidden visibility";
+      break;
+    case elf_symbol::INTERNAL_VISIBILITY:
+      repr = "internal visibility";
+      break;
+    default:
+      {
+       std::ostringstream s;
+       s << "unknown visibility (" << (unsigned char) v << ")";
+       repr = s.str();
+      }
+      break;
+    }
+
+  o << repr;
+  return o;
+}
+
 /// Convert a string representing a symbol type into an
 /// elf_symbol::type.
 ///
@@ -2111,6 +2178,31 @@ string_to_elf_symbol_binding(const string& s, elf_symbol::binding& b)
     return true;
 }
 
+/// Convert a string representing a an elf symbol visibility into an
+/// elf_symbol::visibility.
+///
+/// @param s the string to convert.
+///
+/// @param b the resulting elf_symbol::visibility.
+///
+/// @return true iff the conversion completed successfully.
+bool
+string_to_elf_symbol_visibility(const string& s, elf_symbol::visibility& v)
+{
+  if (s == "default-visibility")
+    v = elf_symbol::DEFAULT_VISIBILITY;
+  else if (s == "protected-visibility")
+    v = elf_symbol::PROTECTED_VISIBILITY;
+  else if (s == "hidden-visibility")
+    v = elf_symbol::HIDDEN_VISIBILITY;
+  else if (s == "internal-visibility")
+    v = elf_symbol::INTERNAL_VISIBILITY;
+  else
+    return false;
+
+  return true;
+}
+
 // <elf_symbol::version stuff>
 
 struct elf_symbol::version::priv
index f1ba6c3b3b573f14ca8efcdb122a20edd978f7ab..cb6ab52a5d8dc4e2c7e3a8872ef023729ade017b 100644 (file)
@@ -2501,6 +2501,28 @@ read_elf_symbol_binding(xmlNodePtr node, elf_symbol::binding& b)
   return false;
 }
 
+/// Read the 'visibility' attribute of the of the 'elf-symbol'
+/// element.
+///
+/// @param node the XML node to read the attribute from.
+///
+/// @param b the XML the resulting elf_symbol::visibility.
+///
+/// @return true iff the function completed successfully.
+static bool
+read_elf_symbol_binding(xmlNodePtr node, elf_symbol::visibility& v)
+{
+  if (xml_char_sptr s = XML_NODE_GET_ATTRIBUTE(node, "visibility"))
+    {
+      string str;
+      xml::xml_char_sptr_to_string(s, str);
+      if (!string_to_elf_symbol_visibility(str, v))
+       return false;
+      return true;
+    }
+  return false;
+}
+
 /// Build a @ref namespace_decl from an XML element node which name is
 /// "namespace-decl".  Note that this function recursively reads the
 /// content of the namespace and builds the proper IR nodes
@@ -2620,16 +2642,19 @@ build_elf_symbol(read_context& ctxt, const xmlNodePtr node)
   elf_symbol::type type = elf_symbol::NOTYPE_TYPE;
   read_elf_symbol_type(node, type);
 
-  elf_symbol::binding binding;
+  elf_symbol::binding binding = elf_symbol::GLOBAL_BINDING;
   read_elf_symbol_binding(node, binding);
 
+  elf_symbol::visibility visibility = elf_symbol::DEFAULT_VISIBILITY;
+  read_elf_symbol_binding(node, visibility);
+
   elf_symbol::version version(version_string, is_default_version);
 
   const environment* env = ctxt.get_environment();
   elf_symbol_sptr e = elf_symbol::create(env, /*index=*/0, size,
                                         name, type, binding,
                                         is_defined, is_common,
-                                        version);
+                                        version, visibility);
   return e;
 }
 
index ac8ae994c53117137ac1cf2ba7731dfa7dcb14e3..4e82e50d71afbf1c3089a13c6731af22db7a15e4 100644 (file)
@@ -1341,6 +1341,39 @@ write_elf_symbol_binding(elf_symbol::binding b, ostream& o)
   o << " binding='" << repr << "'";
 }
 
+/// Serialize an elf_symbol::binding into an XML element attribute of
+/// name 'binding'.
+///
+/// @param b the elf_symbol::binding to serialize.
+///
+/// @param o the output stream to serialize the binding to.
+static void
+write_elf_symbol_visibility(elf_symbol::visibility v, ostream& o)
+{
+  string repr;
+
+  switch (v)
+    {
+    case elf_symbol::DEFAULT_VISIBILITY:
+      repr = "default-visibility";
+      break;
+    case elf_symbol::PROTECTED_VISIBILITY:
+      repr = "protected-visibility";
+      break;
+    case elf_symbol::HIDDEN_VISIBILITY:
+      repr = "hidden-visibility";
+      break;
+    case elf_symbol::INTERNAL_VISIBILITY:
+      repr = "internal-visibility";
+      break;
+    default:
+      repr = "default-visibility";
+      break;
+    }
+
+  o << " visibility='" << repr << "'";
+}
+
 /// Write alias attributes for the aliases of a given symbol.
 ///
 /// @param sym the symbol to write the attributes for.
@@ -2429,6 +2462,8 @@ write_elf_symbol(const elf_symbol_sptr&   sym,
 
   write_elf_symbol_binding(sym->get_binding(), o);
 
+  write_elf_symbol_visibility(sym->get_visibility(), o);
+
   write_elf_symbol_aliases(*sym, o);
 
   o << " is-defined='";
index 45149fd58600f5d0715eff14647cdd4492fda712..4e34d01d92d43e4fc6a41750bd7e6402787c43fc 100644 (file)
@@ -7,13 +7,13 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- emit(std::string&) -->
-    <elf-symbol name='_Z4emitRSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z4emitRSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- emit(std::string&, std::string&) -->
-    <elf-symbol name='_Z4emitRSsS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z4emitRSsS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test23-first-tu.cc' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index 5ed9e611c49f54ab1bbeb7a05e1289ffef3ffb6a..3143c6fa04fcc0830ac753d6aa4e16b0a8e09b83 100644 (file)
@@ -5,17 +5,17 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- bar(std::string const&) -->
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- foo(std::string const&) -->
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::char_traits<char>::length(char const*) -->
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) -->
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index 5ed9e611c49f54ab1bbeb7a05e1289ffef3ffb6a..3143c6fa04fcc0830ac753d6aa4e16b0a8e09b83 100644 (file)
@@ -5,17 +5,17 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- bar(std::string const&) -->
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- foo(std::string const&) -->
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::char_traits<char>::length(char const*) -->
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(char const*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) -->
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index 2b6902c9d332f132fa39f44e419d50dc984ce413..9a2571abf68cdc5a5239b9b5ae365b28a263f4c0 100644 (file)
@@ -7,37 +7,33 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- ns0::bar(int, ...) -->
-    <elf-symbol name='_ZN3ns03barEiz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03barEiz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ns0::baz(int&) -->
-    <elf-symbol name='_ZN3ns03bazERi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03bazERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ns0::foo(char*, long) -->
-    <elf-symbol name='_ZN3ns03fooEPcl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03fooEPcl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ns0::bar2(ns0::E&) -->
-    <elf-symbol name='_ZN3ns04bar2ERNS_1EE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns04bar2ERNS_1EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ns0::baz2(int&) -->
-    <elf-symbol name='_ZN3ns04baz2ERi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns04baz2ERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_fini -->
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_init -->
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _start -->
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- main -->
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- _IO_stdin_used -->
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <!-- __TMC_END__ -->
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <!-- __dso_handle -->
-    <elf-symbol name='__dso_handle' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- global -->
-    <elf-symbol name='global' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='global' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test0.cc' language='LANG_C_plus_plus'>
     <!-- namespace ns0 -->
index f0ead0fc2cee3ea6927bd56d1697478b3895f03b..c4129f73c1b30544f68319f622fc444fd10df5d1 100644 (file)
@@ -7,61 +7,57 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- foo(s0&) -->
-    <elf-symbol name='_Z3fooR2s0' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooR2s0' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- b0::b0() -->
-    <elf-symbol name='_ZN2b0C1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN2b0C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- b0::b0() -->
-    <elf-symbol name='_ZN2b0C2Ev' type='func-type' binding='weak-binding' alias='_ZN2b0C1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN2b0C2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN2b0C1Ev' is-defined='yes'/>
     <!-- b1::b1() -->
-    <elf-symbol name='_ZN2b1C1Ev' type='func-type' binding='weak-binding' alias='_ZN2b1C2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN2b1C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN2b1C2Ev' is-defined='yes'/>
     <!-- b1::b1() -->
-    <elf-symbol name='_ZN2b1C2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN2b1C2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- s0::mem_fun() -->
-    <elf-symbol name='_ZN2s07mem_funEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN2s07mem_funEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- s0::s0() -->
-    <elf-symbol name='_ZN2s0C1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN2s0C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- s0::~s0() -->
-    <elf-symbol name='_ZN2s0D1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN2s0D1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_fini -->
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_init -->
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _start -->
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- main -->
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- _IO_stdin_used -->
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for b0 -->
-    <elf-symbol name='_ZTI2b0' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI2b0' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for b1 -->
-    <elf-symbol name='_ZTI2b1' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI2b1' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for s0 -->
-    <elf-symbol name='_ZTI2s0' size='56' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI2s0' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for b0 -->
-    <elf-symbol name='_ZTS2b0' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS2b0' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for b1 -->
-    <elf-symbol name='_ZTS2b1' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS2b1' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for s0 -->
-    <elf-symbol name='_ZTS2s0' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS2s0' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- VTT for s0 -->
-    <elf-symbol name='_ZTT2s0' size='8' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTT2s0' size='8' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for s0 -->
-    <elf-symbol name='_ZTV2s0' size='32' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV2s0' size='32' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3 -->
-    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _ZTVN10__cxxabiv121__vmi_class_type_infoE@@CXXABI_1.3 -->
-    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <!-- __TMC_END__ -->
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <!-- __dso_handle -->
-    <elf-symbol name='__dso_handle' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test1.cc' language='LANG_C_plus_plus'>
     <!-- struct b0 -->
index f56257895ff500cac517f41081dd01850f63cdcb..98bdd781d1ea571e7e34ba3d282901d3fe12b671 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- dbus_address_entries_free -->
-    <elf-symbol name='dbus_address_entries_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entries_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_address_entry_get_method -->
-    <elf-symbol name='dbus_address_entry_get_method' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entry_get_method' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_address_entry_get_value -->
-    <elf-symbol name='dbus_address_entry_get_value' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entry_get_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_address_escape_value -->
-    <elf-symbol name='dbus_address_escape_value' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_escape_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_address_unescape_value -->
-    <elf-symbol name='dbus_address_unescape_value' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_unescape_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_add_match -->
-    <elf-symbol name='dbus_bus_add_match' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_add_match' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_get -->
-    <elf-symbol name='dbus_bus_get' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_get_id -->
-    <elf-symbol name='dbus_bus_get_id' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_get_private -->
-    <elf-symbol name='dbus_bus_get_private' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_private' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_get_unique_name -->
-    <elf-symbol name='dbus_bus_get_unique_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_unique_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_get_unix_user -->
-    <elf-symbol name='dbus_bus_get_unix_user' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_unix_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_name_has_owner -->
-    <elf-symbol name='dbus_bus_name_has_owner' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_name_has_owner' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_register -->
-    <elf-symbol name='dbus_bus_register' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_register' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_release_name -->
-    <elf-symbol name='dbus_bus_release_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_release_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_remove_match -->
-    <elf-symbol name='dbus_bus_remove_match' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_remove_match' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_request_name -->
-    <elf-symbol name='dbus_bus_request_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_request_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_set_unique_name -->
-    <elf-symbol name='dbus_bus_set_unique_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_set_unique_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_bus_start_service_by_name -->
-    <elf-symbol name='dbus_bus_start_service_by_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_start_service_by_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_add_filter -->
-    <elf-symbol name='dbus_connection_add_filter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_add_filter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_allocate_data_slot -->
-    <elf-symbol name='dbus_connection_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_borrow_message -->
-    <elf-symbol name='dbus_connection_borrow_message' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_borrow_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_can_send_type -->
-    <elf-symbol name='dbus_connection_can_send_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_can_send_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_close -->
-    <elf-symbol name='dbus_connection_close' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_dispatch -->
-    <elf-symbol name='dbus_connection_dispatch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_dispatch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_flush -->
-    <elf-symbol name='dbus_connection_flush' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_flush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_free_data_slot -->
-    <elf-symbol name='dbus_connection_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_free_preallocated_send -->
-    <elf-symbol name='dbus_connection_free_preallocated_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_free_preallocated_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_adt_audit_session_data -->
-    <elf-symbol name='dbus_connection_get_adt_audit_session_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_adt_audit_session_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_data -->
-    <elf-symbol name='dbus_connection_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_dispatch_status -->
-    <elf-symbol name='dbus_connection_get_dispatch_status' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_dispatch_status' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_is_anonymous -->
-    <elf-symbol name='dbus_connection_get_is_anonymous' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_anonymous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_is_authenticated -->
-    <elf-symbol name='dbus_connection_get_is_authenticated' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_authenticated' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_is_connected -->
-    <elf-symbol name='dbus_connection_get_is_connected' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_connected' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_max_message_size -->
-    <elf-symbol name='dbus_connection_get_max_message_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_message_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_max_message_unix_fds -->
-    <elf-symbol name='dbus_connection_get_max_message_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_message_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_max_received_size -->
-    <elf-symbol name='dbus_connection_get_max_received_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_received_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_max_received_unix_fds -->
-    <elf-symbol name='dbus_connection_get_max_received_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_received_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_object_path_data -->
-    <elf-symbol name='dbus_connection_get_object_path_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_object_path_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_outgoing_size -->
-    <elf-symbol name='dbus_connection_get_outgoing_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_outgoing_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_outgoing_unix_fds -->
-    <elf-symbol name='dbus_connection_get_outgoing_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_outgoing_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_server_id -->
-    <elf-symbol name='dbus_connection_get_server_id' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_server_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_socket -->
-    <elf-symbol name='dbus_connection_get_socket' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_unix_fd -->
-    <elf-symbol name='dbus_connection_get_unix_fd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_unix_process_id -->
-    <elf-symbol name='dbus_connection_get_unix_process_id' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_process_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_unix_user -->
-    <elf-symbol name='dbus_connection_get_unix_user' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_get_windows_user -->
-    <elf-symbol name='dbus_connection_get_windows_user' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_windows_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_has_messages_to_send -->
-    <elf-symbol name='dbus_connection_has_messages_to_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_has_messages_to_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_list_registered -->
-    <elf-symbol name='dbus_connection_list_registered' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_list_registered' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_open -->
-    <elf-symbol name='dbus_connection_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_open_private -->
-    <elf-symbol name='dbus_connection_open_private' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_open_private' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_pop_message -->
-    <elf-symbol name='dbus_connection_pop_message' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_pop_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_preallocate_send -->
-    <elf-symbol name='dbus_connection_preallocate_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_preallocate_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_read_write -->
-    <elf-symbol name='dbus_connection_read_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_read_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_read_write_dispatch -->
-    <elf-symbol name='dbus_connection_read_write_dispatch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_read_write_dispatch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_ref -->
-    <elf-symbol name='dbus_connection_ref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_register_fallback -->
-    <elf-symbol name='dbus_connection_register_fallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_register_fallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_register_object_path -->
-    <elf-symbol name='dbus_connection_register_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_register_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_remove_filter -->
-    <elf-symbol name='dbus_connection_remove_filter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_remove_filter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_return_message -->
-    <elf-symbol name='dbus_connection_return_message' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_return_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_send -->
-    <elf-symbol name='dbus_connection_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_send_preallocated -->
-    <elf-symbol name='dbus_connection_send_preallocated' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_preallocated' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_send_with_reply -->
-    <elf-symbol name='dbus_connection_send_with_reply' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_with_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_send_with_reply_and_block -->
-    <elf-symbol name='dbus_connection_send_with_reply_and_block' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_with_reply_and_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_allow_anonymous -->
-    <elf-symbol name='dbus_connection_set_allow_anonymous' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_allow_anonymous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_change_sigpipe -->
-    <elf-symbol name='dbus_connection_set_change_sigpipe' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_change_sigpipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_data -->
-    <elf-symbol name='dbus_connection_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_dispatch_status_function -->
-    <elf-symbol name='dbus_connection_set_dispatch_status_function' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_dispatch_status_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_exit_on_disconnect -->
-    <elf-symbol name='dbus_connection_set_exit_on_disconnect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_exit_on_disconnect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_max_message_size -->
-    <elf-symbol name='dbus_connection_set_max_message_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_message_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_max_message_unix_fds -->
-    <elf-symbol name='dbus_connection_set_max_message_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_message_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_max_received_size -->
-    <elf-symbol name='dbus_connection_set_max_received_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_received_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_max_received_unix_fds -->
-    <elf-symbol name='dbus_connection_set_max_received_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_received_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_route_peer_messages -->
-    <elf-symbol name='dbus_connection_set_route_peer_messages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_route_peer_messages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_timeout_functions -->
-    <elf-symbol name='dbus_connection_set_timeout_functions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_timeout_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_unix_user_function -->
-    <elf-symbol name='dbus_connection_set_unix_user_function' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_unix_user_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_wakeup_main_function -->
-    <elf-symbol name='dbus_connection_set_wakeup_main_function' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_wakeup_main_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_watch_functions -->
-    <elf-symbol name='dbus_connection_set_watch_functions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_watch_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_set_windows_user_function -->
-    <elf-symbol name='dbus_connection_set_windows_user_function' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_windows_user_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_steal_borrowed_message -->
-    <elf-symbol name='dbus_connection_steal_borrowed_message' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_steal_borrowed_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_try_register_fallback -->
-    <elf-symbol name='dbus_connection_try_register_fallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_try_register_fallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_try_register_object_path -->
-    <elf-symbol name='dbus_connection_try_register_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_try_register_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_unref -->
-    <elf-symbol name='dbus_connection_unref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_connection_unregister_object_path -->
-    <elf-symbol name='dbus_connection_unregister_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_unregister_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_error_free -->
-    <elf-symbol name='dbus_error_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_error_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_error_has_name -->
-    <elf-symbol name='dbus_error_has_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_error_has_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_error_init -->
-    <elf-symbol name='dbus_error_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_error_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_error_is_set -->
-    <elf-symbol name='dbus_error_is_set' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_error_is_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_free -->
-    <elf-symbol name='dbus_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_free_string_array -->
-    <elf-symbol name='dbus_free_string_array' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_free_string_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_get_local_machine_id -->
-    <elf-symbol name='dbus_get_local_machine_id' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_get_local_machine_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_get_version -->
-    <elf-symbol name='dbus_get_version' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_get_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_internal_do_not_use_create_uuid -->
-    <elf-symbol name='dbus_internal_do_not_use_create_uuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_internal_do_not_use_create_uuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_internal_do_not_use_get_uuid -->
-    <elf-symbol name='dbus_internal_do_not_use_get_uuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_internal_do_not_use_get_uuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_malloc -->
-    <elf-symbol name='dbus_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_malloc0 -->
-    <elf-symbol name='dbus_malloc0' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_malloc0' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_allocate_data_slot -->
-    <elf-symbol name='dbus_message_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_append_args -->
-    <elf-symbol name='dbus_message_append_args' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_append_args' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_append_args_valist -->
-    <elf-symbol name='dbus_message_append_args_valist' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_append_args_valist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_contains_unix_fds -->
-    <elf-symbol name='dbus_message_contains_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_contains_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_copy -->
-    <elf-symbol name='dbus_message_copy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_demarshal -->
-    <elf-symbol name='dbus_message_demarshal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_demarshal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_demarshal_bytes_needed -->
-    <elf-symbol name='dbus_message_demarshal_bytes_needed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_demarshal_bytes_needed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_free_data_slot -->
-    <elf-symbol name='dbus_message_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_args -->
-    <elf-symbol name='dbus_message_get_args' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_args' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_args_valist -->
-    <elf-symbol name='dbus_message_get_args_valist' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_args_valist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_auto_start -->
-    <elf-symbol name='dbus_message_get_auto_start' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_auto_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_data -->
-    <elf-symbol name='dbus_message_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_destination -->
-    <elf-symbol name='dbus_message_get_destination' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_error_name -->
-    <elf-symbol name='dbus_message_get_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_interface -->
-    <elf-symbol name='dbus_message_get_interface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_member -->
-    <elf-symbol name='dbus_message_get_member' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_no_reply -->
-    <elf-symbol name='dbus_message_get_no_reply' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_no_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_path -->
-    <elf-symbol name='dbus_message_get_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_path_decomposed -->
-    <elf-symbol name='dbus_message_get_path_decomposed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_path_decomposed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_reply_serial -->
-    <elf-symbol name='dbus_message_get_reply_serial' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_reply_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_sender -->
-    <elf-symbol name='dbus_message_get_sender' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_serial -->
-    <elf-symbol name='dbus_message_get_serial' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_signature -->
-    <elf-symbol name='dbus_message_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_get_type -->
-    <elf-symbol name='dbus_message_get_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_destination -->
-    <elf-symbol name='dbus_message_has_destination' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_interface -->
-    <elf-symbol name='dbus_message_has_interface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_member -->
-    <elf-symbol name='dbus_message_has_member' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_path -->
-    <elf-symbol name='dbus_message_has_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_sender -->
-    <elf-symbol name='dbus_message_has_sender' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_has_signature -->
-    <elf-symbol name='dbus_message_has_signature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_is_error -->
-    <elf-symbol name='dbus_message_is_error' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_is_method_call -->
-    <elf-symbol name='dbus_message_is_method_call' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_method_call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_is_signal -->
-    <elf-symbol name='dbus_message_is_signal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_abandon_container -->
-    <elf-symbol name='dbus_message_iter_abandon_container' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_abandon_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_append_basic -->
-    <elf-symbol name='dbus_message_iter_append_basic' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_append_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_append_fixed_array -->
-    <elf-symbol name='dbus_message_iter_append_fixed_array' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_append_fixed_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_close_container -->
-    <elf-symbol name='dbus_message_iter_close_container' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_close_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_arg_type -->
-    <elf-symbol name='dbus_message_iter_get_arg_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_arg_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_array_len -->
-    <elf-symbol name='dbus_message_iter_get_array_len' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_array_len' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_basic -->
-    <elf-symbol name='dbus_message_iter_get_basic' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_element_type -->
-    <elf-symbol name='dbus_message_iter_get_element_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_element_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_fixed_array -->
-    <elf-symbol name='dbus_message_iter_get_fixed_array' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_fixed_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_get_signature -->
-    <elf-symbol name='dbus_message_iter_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_has_next -->
-    <elf-symbol name='dbus_message_iter_has_next' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_has_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_init -->
-    <elf-symbol name='dbus_message_iter_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_init_append -->
-    <elf-symbol name='dbus_message_iter_init_append' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_init_append' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_next -->
-    <elf-symbol name='dbus_message_iter_next' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_open_container -->
-    <elf-symbol name='dbus_message_iter_open_container' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_open_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_iter_recurse -->
-    <elf-symbol name='dbus_message_iter_recurse' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_recurse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_lock -->
-    <elf-symbol name='dbus_message_lock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_marshal -->
-    <elf-symbol name='dbus_message_marshal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_marshal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new -->
-    <elf-symbol name='dbus_message_new' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new_error -->
-    <elf-symbol name='dbus_message_new_error' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new_error_printf -->
-    <elf-symbol name='dbus_message_new_error_printf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_error_printf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new_method_call -->
-    <elf-symbol name='dbus_message_new_method_call' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_method_call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new_method_return -->
-    <elf-symbol name='dbus_message_new_method_return' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_method_return' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_new_signal -->
-    <elf-symbol name='dbus_message_new_signal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_ref -->
-    <elf-symbol name='dbus_message_ref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_auto_start -->
-    <elf-symbol name='dbus_message_set_auto_start' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_auto_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_data -->
-    <elf-symbol name='dbus_message_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_destination -->
-    <elf-symbol name='dbus_message_set_destination' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_error_name -->
-    <elf-symbol name='dbus_message_set_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_interface -->
-    <elf-symbol name='dbus_message_set_interface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_member -->
-    <elf-symbol name='dbus_message_set_member' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_no_reply -->
-    <elf-symbol name='dbus_message_set_no_reply' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_no_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_path -->
-    <elf-symbol name='dbus_message_set_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_reply_serial -->
-    <elf-symbol name='dbus_message_set_reply_serial' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_reply_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_sender -->
-    <elf-symbol name='dbus_message_set_sender' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_set_serial -->
-    <elf-symbol name='dbus_message_set_serial' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_type_from_string -->
-    <elf-symbol name='dbus_message_type_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_type_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_type_to_string -->
-    <elf-symbol name='dbus_message_type_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_type_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_message_unref -->
-    <elf-symbol name='dbus_message_unref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_message_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_move_error -->
-    <elf-symbol name='dbus_move_error' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_move_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_parse_address -->
-    <elf-symbol name='dbus_parse_address' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_parse_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_allocate_data_slot -->
-    <elf-symbol name='dbus_pending_call_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_block -->
-    <elf-symbol name='dbus_pending_call_block' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_cancel -->
-    <elf-symbol name='dbus_pending_call_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_free_data_slot -->
-    <elf-symbol name='dbus_pending_call_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_get_completed -->
-    <elf-symbol name='dbus_pending_call_get_completed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_get_completed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_get_data -->
-    <elf-symbol name='dbus_pending_call_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_ref -->
-    <elf-symbol name='dbus_pending_call_ref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_set_data -->
-    <elf-symbol name='dbus_pending_call_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_set_notify -->
-    <elf-symbol name='dbus_pending_call_set_notify' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_set_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_steal_reply -->
-    <elf-symbol name='dbus_pending_call_steal_reply' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_steal_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_pending_call_unref -->
-    <elf-symbol name='dbus_pending_call_unref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_realloc -->
-    <elf-symbol name='dbus_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_allocate_data_slot -->
-    <elf-symbol name='dbus_server_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_disconnect -->
-    <elf-symbol name='dbus_server_disconnect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_disconnect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_free_data_slot -->
-    <elf-symbol name='dbus_server_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_get_address -->
-    <elf-symbol name='dbus_server_get_address' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_get_data -->
-    <elf-symbol name='dbus_server_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_get_id -->
-    <elf-symbol name='dbus_server_get_id' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_get_is_connected -->
-    <elf-symbol name='dbus_server_get_is_connected' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_is_connected' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_listen -->
-    <elf-symbol name='dbus_server_listen' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_ref -->
-    <elf-symbol name='dbus_server_ref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_set_auth_mechanisms -->
-    <elf-symbol name='dbus_server_set_auth_mechanisms' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_auth_mechanisms' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_set_data -->
-    <elf-symbol name='dbus_server_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_set_new_connection_function -->
-    <elf-symbol name='dbus_server_set_new_connection_function' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_new_connection_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_set_timeout_functions -->
-    <elf-symbol name='dbus_server_set_timeout_functions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_timeout_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_set_watch_functions -->
-    <elf-symbol name='dbus_server_set_watch_functions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_watch_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_server_unref -->
-    <elf-symbol name='dbus_server_unref' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_server_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_set_error -->
-    <elf-symbol name='dbus_set_error' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_set_error_const -->
-    <elf-symbol name='dbus_set_error_const' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error_const' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_set_error_from_message -->
-    <elf-symbol name='dbus_set_error_from_message' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error_from_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_setenv -->
-    <elf-symbol name='dbus_setenv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_setenv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_shutdown -->
-    <elf-symbol name='dbus_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_get_current_type -->
-    <elf-symbol name='dbus_signature_iter_get_current_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_current_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_get_element_type -->
-    <elf-symbol name='dbus_signature_iter_get_element_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_element_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_get_signature -->
-    <elf-symbol name='dbus_signature_iter_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_init -->
-    <elf-symbol name='dbus_signature_iter_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_next -->
-    <elf-symbol name='dbus_signature_iter_next' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_iter_recurse -->
-    <elf-symbol name='dbus_signature_iter_recurse' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_recurse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_validate -->
-    <elf-symbol name='dbus_signature_validate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_validate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_signature_validate_single -->
-    <elf-symbol name='dbus_signature_validate_single' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_validate_single' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_threads_init -->
-    <elf-symbol name='dbus_threads_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_threads_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_threads_init_default -->
-    <elf-symbol name='dbus_threads_init_default' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_threads_init_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_timeout_get_data -->
-    <elf-symbol name='dbus_timeout_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_timeout_get_enabled -->
-    <elf-symbol name='dbus_timeout_get_enabled' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_enabled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_timeout_get_interval -->
-    <elf-symbol name='dbus_timeout_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_timeout_handle -->
-    <elf-symbol name='dbus_timeout_handle' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_timeout_set_data -->
-    <elf-symbol name='dbus_timeout_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_type_is_basic -->
-    <elf-symbol name='dbus_type_is_basic' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_type_is_container -->
-    <elf-symbol name='dbus_type_is_container' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_type_is_fixed -->
-    <elf-symbol name='dbus_type_is_fixed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_fixed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_type_is_valid -->
-    <elf-symbol name='dbus_type_is_valid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_valid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_bus_name -->
-    <elf-symbol name='dbus_validate_bus_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_bus_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_error_name -->
-    <elf-symbol name='dbus_validate_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_interface -->
-    <elf-symbol name='dbus_validate_interface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_member -->
-    <elf-symbol name='dbus_validate_member' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_path -->
-    <elf-symbol name='dbus_validate_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_validate_utf8 -->
-    <elf-symbol name='dbus_validate_utf8' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_utf8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_data -->
-    <elf-symbol name='dbus_watch_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_enabled -->
-    <elf-symbol name='dbus_watch_get_enabled' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_enabled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_fd -->
-    <elf-symbol name='dbus_watch_get_fd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_flags -->
-    <elf-symbol name='dbus_watch_get_flags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_socket -->
-    <elf-symbol name='dbus_watch_get_socket' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_get_unix_fd -->
-    <elf-symbol name='dbus_watch_get_unix_fd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_unix_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_handle -->
-    <elf-symbol name='dbus_watch_handle' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dbus_watch_set_data -->
-    <elf-symbol name='dbus_watch_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='dbus-address.c' language='LANG_C89'>
     <!-- char -->
index 8868331bf5ee05f2280b73d96fcf1bc161a48e3f..7647b9e2f9cc9a9e77e950fdf191b438bbb79a7e 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- gluBeginCurve -->
-    <elf-symbol name='gluBeginCurve' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBeginCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBeginPolygon -->
-    <elf-symbol name='gluBeginPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBeginPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBeginSurface -->
-    <elf-symbol name='gluBeginSurface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBeginSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBeginTrim -->
-    <elf-symbol name='gluBeginTrim' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBeginTrim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild1DMipmapLevels -->
-    <elf-symbol name='gluBuild1DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild1DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild1DMipmaps -->
-    <elf-symbol name='gluBuild1DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild1DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild2DMipmapLevels -->
-    <elf-symbol name='gluBuild2DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild2DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild2DMipmaps -->
-    <elf-symbol name='gluBuild2DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild2DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild3DMipmapLevels -->
-    <elf-symbol name='gluBuild3DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild3DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluBuild3DMipmaps -->
-    <elf-symbol name='gluBuild3DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBuild3DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluCheckExtension -->
-    <elf-symbol name='gluCheckExtension' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluCheckExtension' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluCylinder -->
-    <elf-symbol name='gluCylinder' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluCylinder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluDeleteNurbsRenderer -->
-    <elf-symbol name='gluDeleteNurbsRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluDeleteNurbsRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluDeleteQuadric -->
-    <elf-symbol name='gluDeleteQuadric' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluDeleteQuadric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluDeleteTess -->
-    <elf-symbol name='gluDeleteTess' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluDeleteTess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluDisk -->
-    <elf-symbol name='gluDisk' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluDisk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluEndCurve -->
-    <elf-symbol name='gluEndCurve' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluEndCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluEndPolygon -->
-    <elf-symbol name='gluEndPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluEndPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluEndSurface -->
-    <elf-symbol name='gluEndSurface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluEndSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluEndTrim -->
-    <elf-symbol name='gluEndTrim' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluEndTrim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluErrorString -->
-    <elf-symbol name='gluErrorString' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluErrorString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluGetNurbsProperty -->
-    <elf-symbol name='gluGetNurbsProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluGetNurbsProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluGetString -->
-    <elf-symbol name='gluGetString' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluGetString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluGetTessProperty -->
-    <elf-symbol name='gluGetTessProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluGetTessProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluLoadSamplingMatrices -->
-    <elf-symbol name='gluLoadSamplingMatrices' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluLoadSamplingMatrices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluLookAt -->
-    <elf-symbol name='gluLookAt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluLookAt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNewNurbsRenderer -->
-    <elf-symbol name='gluNewNurbsRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNewNurbsRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNewQuadric -->
-    <elf-symbol name='gluNewQuadric' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNewQuadric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNewTess -->
-    <elf-symbol name='gluNewTess' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNewTess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNextContour -->
-    <elf-symbol name='gluNextContour' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNextContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsCallback -->
-    <elf-symbol name='gluNurbsCallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsCallbackData -->
-    <elf-symbol name='gluNurbsCallbackData' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallbackData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsCallbackDataEXT -->
-    <elf-symbol name='gluNurbsCallbackDataEXT' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallbackDataEXT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsCurve -->
-    <elf-symbol name='gluNurbsCurve' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsProperty -->
-    <elf-symbol name='gluNurbsProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluNurbsSurface -->
-    <elf-symbol name='gluNurbsSurface' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluNurbsSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluOrtho2D -->
-    <elf-symbol name='gluOrtho2D' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluOrtho2D' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluPartialDisk -->
-    <elf-symbol name='gluPartialDisk' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluPartialDisk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluPerspective -->
-    <elf-symbol name='gluPerspective' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluPerspective' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluPickMatrix -->
-    <elf-symbol name='gluPickMatrix' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluPickMatrix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluProject -->
-    <elf-symbol name='gluProject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluProject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluPwlCurve -->
-    <elf-symbol name='gluPwlCurve' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluPwlCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluQuadricCallback -->
-    <elf-symbol name='gluQuadricCallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluQuadricCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluQuadricDrawStyle -->
-    <elf-symbol name='gluQuadricDrawStyle' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluQuadricDrawStyle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluQuadricNormals -->
-    <elf-symbol name='gluQuadricNormals' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluQuadricNormals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluQuadricOrientation -->
-    <elf-symbol name='gluQuadricOrientation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluQuadricOrientation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluQuadricTexture -->
-    <elf-symbol name='gluQuadricTexture' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluQuadricTexture' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluScaleImage -->
-    <elf-symbol name='gluScaleImage' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluScaleImage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluSphere -->
-    <elf-symbol name='gluSphere' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluSphere' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessBeginContour -->
-    <elf-symbol name='gluTessBeginContour' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessBeginContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessBeginPolygon -->
-    <elf-symbol name='gluTessBeginPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessBeginPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessCallback -->
-    <elf-symbol name='gluTessCallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessEndContour -->
-    <elf-symbol name='gluTessEndContour' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessEndContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessEndPolygon -->
-    <elf-symbol name='gluTessEndPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessEndPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessNormal -->
-    <elf-symbol name='gluTessNormal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessNormal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessProperty -->
-    <elf-symbol name='gluTessProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluTessVertex -->
-    <elf-symbol name='gluTessVertex' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluTessVertex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluUnProject -->
-    <elf-symbol name='gluUnProject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluUnProject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gluUnProject4 -->
-    <elf-symbol name='gluUnProject4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluUnProject4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='libutil/error.c' language='LANG_C99'>
     <!-- unsigned char -->
index b239c12371e5453ac6e257ab95a0e74a3ae0ed52..beefe242621881e006d9a32f50af42751325b7bc 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- AnnotateBenignRace -->
-    <elf-symbol name='AnnotateBenignRace' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateBenignRace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateBenignRaceSized -->
-    <elf-symbol name='AnnotateBenignRaceSized' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateBenignRaceSized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateCondVarSignal -->
-    <elf-symbol name='AnnotateCondVarSignal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarSignal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateCondVarSignalAll -->
-    <elf-symbol name='AnnotateCondVarSignalAll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarSignalAll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateCondVarWait -->
-    <elf-symbol name='AnnotateCondVarWait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarWait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateEnableRaceDetection -->
-    <elf-symbol name='AnnotateEnableRaceDetection' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateEnableRaceDetection' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateExpectRace -->
-    <elf-symbol name='AnnotateExpectRace' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateExpectRace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateFlushExpectedRaces -->
-    <elf-symbol name='AnnotateFlushExpectedRaces' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateFlushExpectedRaces' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateFlushState -->
-    <elf-symbol name='AnnotateFlushState' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateFlushState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateHappensAfter -->
-    <elf-symbol name='AnnotateHappensAfter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateHappensAfter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateHappensBefore -->
-    <elf-symbol name='AnnotateHappensBefore' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateHappensBefore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreReadsBegin -->
-    <elf-symbol name='AnnotateIgnoreReadsBegin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreReadsBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreReadsEnd -->
-    <elf-symbol name='AnnotateIgnoreReadsEnd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreReadsEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreSyncBegin -->
-    <elf-symbol name='AnnotateIgnoreSyncBegin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreSyncBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreSyncEnd -->
-    <elf-symbol name='AnnotateIgnoreSyncEnd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreSyncEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreWritesBegin -->
-    <elf-symbol name='AnnotateIgnoreWritesBegin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreWritesBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateIgnoreWritesEnd -->
-    <elf-symbol name='AnnotateIgnoreWritesEnd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreWritesEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateMemoryIsInitialized -->
-    <elf-symbol name='AnnotateMemoryIsInitialized' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateMemoryIsInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateMutexIsNotPHB -->
-    <elf-symbol name='AnnotateMutexIsNotPHB' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateMutexIsNotPHB' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateMutexIsUsedAsCondVar -->
-    <elf-symbol name='AnnotateMutexIsUsedAsCondVar' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateMutexIsUsedAsCondVar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateNewMemory -->
-    <elf-symbol name='AnnotateNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateNoOp -->
-    <elf-symbol name='AnnotateNoOp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateNoOp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotatePCQCreate -->
-    <elf-symbol name='AnnotatePCQCreate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQCreate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotatePCQDestroy -->
-    <elf-symbol name='AnnotatePCQDestroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQDestroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotatePCQGet -->
-    <elf-symbol name='AnnotatePCQGet' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQGet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotatePCQPut -->
-    <elf-symbol name='AnnotatePCQPut' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQPut' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotatePublishMemoryRange -->
-    <elf-symbol name='AnnotatePublishMemoryRange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotatePublishMemoryRange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateRWLockAcquired -->
-    <elf-symbol name='AnnotateRWLockAcquired' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockAcquired' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateRWLockCreate -->
-    <elf-symbol name='AnnotateRWLockCreate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockCreate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateRWLockCreateStatic -->
-    <elf-symbol name='AnnotateRWLockCreateStatic' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockCreateStatic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateRWLockDestroy -->
-    <elf-symbol name='AnnotateRWLockDestroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockDestroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateRWLockReleased -->
-    <elf-symbol name='AnnotateRWLockReleased' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockReleased' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateThreadName -->
-    <elf-symbol name='AnnotateThreadName' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateThreadName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateTraceMemory -->
-    <elf-symbol name='AnnotateTraceMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateTraceMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AnnotateUnpublishMemoryRange -->
-    <elf-symbol name='AnnotateUnpublishMemoryRange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateUnpublishMemoryRange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RunningOnValgrind -->
-    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ThreadSanitizerQuery -->
-    <elf-symbol name='ThreadSanitizerQuery' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ThreadSanitizerQuery' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ValgrindSlowdown -->
-    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- WTFAnnotateBenignRaceSized -->
-    <elf-symbol name='WTFAnnotateBenignRaceSized' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateBenignRaceSized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- WTFAnnotateHappensAfter -->
-    <elf-symbol name='WTFAnnotateHappensAfter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateHappensAfter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- WTFAnnotateHappensBefore -->
-    <elf-symbol name='WTFAnnotateHappensBefore' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateHappensBefore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer::CheckFailed(char const*, int, char const*, unsigned long long, unsigned long long) -->
-    <elf-symbol name='_ZN11__sanitizer11CheckFailedEPKciS1_yy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11__sanitizer11CheckFailedEPKciS1_yy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer::OnPrint(char const*) -->
-    <elf-symbol name='_ZN11__sanitizer7OnPrintEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11__sanitizer7OnPrintEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan::OnFinalize(bool) -->
-    <elf-symbol name='_ZN6__tsan10OnFinalizeEb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN6__tsan10OnFinalizeEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan::OnReport(__tsan::ReportDesc const*, bool) -->
-    <elf-symbol name='_ZN6__tsan8OnReportEPKNS_10ReportDescEb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN6__tsan8OnReportEPKNS_10ReportDescEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator delete[](void*) -->
-    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator delete[](void*, std::nothrow_t const&) -->
-    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator delete(void*) -->
-    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator delete(void*, std::nothrow_t const&) -->
-    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new[](unsigned long) -->
-    <elf-symbol name='_Znam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Znam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new[](unsigned long, std::nothrow_t const&) -->
-    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new(unsigned long) -->
-    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new(unsigned long, std::nothrow_t const&) -->
-    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_alloc -->
-    <elf-symbol name='__asan_backtrace_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_close -->
-    <elf-symbol name='__asan_backtrace_close' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_create_state -->
-    <elf-symbol name='__asan_backtrace_create_state' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_create_state' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_dwarf_add -->
-    <elf-symbol name='__asan_backtrace_dwarf_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_dwarf_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_free -->
-    <elf-symbol name='__asan_backtrace_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_get_view -->
-    <elf-symbol name='__asan_backtrace_get_view' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_get_view' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_initialize -->
-    <elf-symbol name='__asan_backtrace_initialize' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_open -->
-    <elf-symbol name='__asan_backtrace_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_pcinfo -->
-    <elf-symbol name='__asan_backtrace_pcinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_pcinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_qsort -->
-    <elf-symbol name='__asan_backtrace_qsort' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_qsort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_release_view -->
-    <elf-symbol name='__asan_backtrace_release_view' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_release_view' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_syminfo -->
-    <elf-symbol name='__asan_backtrace_syminfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_syminfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_vector_finish -->
-    <elf-symbol name='__asan_backtrace_vector_finish' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_finish' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_vector_grow -->
-    <elf-symbol name='__asan_backtrace_vector_grow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_grow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_backtrace_vector_release -->
-    <elf-symbol name='__asan_backtrace_vector_release' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_fill_ctor -->
-    <elf-symbol name='__asan_cplus_demangle_fill_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_fill_dtor -->
-    <elf-symbol name='__asan_cplus_demangle_fill_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_fill_extended_operator -->
-    <elf-symbol name='__asan_cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_fill_name -->
-    <elf-symbol name='__asan_cplus_demangle_fill_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_init_info -->
-    <elf-symbol name='__asan_cplus_demangle_init_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_init_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_mangled_name -->
-    <elf-symbol name='__asan_cplus_demangle_mangled_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_mangled_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_print -->
-    <elf-symbol name='__asan_cplus_demangle_print' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_print_callback -->
-    <elf-symbol name='__asan_cplus_demangle_print_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_print_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_type -->
-    <elf-symbol name='__asan_cplus_demangle_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_v3 -->
-    <elf-symbol name='__asan_cplus_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_v3_callback -->
-    <elf-symbol name='__asan_cplus_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_memcmp -->
-    <elf-symbol name='__asan_internal_memcmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memcmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_memcpy -->
-    <elf-symbol name='__asan_internal_memcpy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memcpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_memset -->
-    <elf-symbol name='__asan_internal_memset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_strcmp -->
-    <elf-symbol name='__asan_internal_strcmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strcmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_strlen -->
-    <elf-symbol name='__asan_internal_strlen' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strlen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_strncmp -->
-    <elf-symbol name='__asan_internal_strncmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strncmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_internal_strnlen -->
-    <elf-symbol name='__asan_internal_strnlen' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strnlen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_is_gnu_v3_mangled_ctor -->
-    <elf-symbol name='__asan_is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_is_gnu_v3_mangled_dtor -->
-    <elf-symbol name='__asan_is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_java_demangle_v3 -->
-    <elf-symbol name='__asan_java_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_java_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_java_demangle_v3_callback -->
-    <elf-symbol name='__asan_java_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_java_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __close -->
-    <elf-symbol name='__close' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__close' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __cxa_atexit -->
-    <elf-symbol name='__cxa_atexit' type='func-type' binding='weak-binding' alias='__interceptor___cxa_atexit' is-defined='yes'/>
+    <elf-symbol name='__cxa_atexit' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___cxa_atexit' is-defined='yes'/>
     <!-- __cxa_guard_abort -->
-    <elf-symbol name='__cxa_guard_abort' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_abort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __cxa_guard_acquire -->
-    <elf-symbol name='__cxa_guard_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __cxa_guard_release -->
-    <elf-symbol name='__cxa_guard_release' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __fxstat -->
-    <elf-symbol name='__fxstat' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__fxstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __fxstat64 -->
-    <elf-symbol name='__fxstat64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__fxstat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___close -->
-    <elf-symbol name='__interceptor___close' type='func-type' binding='global-binding' alias='__close' is-defined='yes'/>
+    <elf-symbol name='__interceptor___close' type='func-type' binding='global-binding' visibility='default-visibility' alias='__close' is-defined='yes'/>
     <!-- __interceptor___cxa_atexit -->
-    <elf-symbol name='__interceptor___cxa_atexit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___cxa_atexit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___fxstat -->
-    <elf-symbol name='__interceptor___fxstat' type='func-type' binding='global-binding' alias='__fxstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor___fxstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='__fxstat' is-defined='yes'/>
     <!-- __interceptor___fxstat64 -->
-    <elf-symbol name='__interceptor___fxstat64' type='func-type' binding='global-binding' alias='__fxstat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor___fxstat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='__fxstat64' is-defined='yes'/>
     <!-- __interceptor___isoc99_fscanf -->
-    <elf-symbol name='__interceptor___isoc99_fscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_fscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___isoc99_scanf -->
-    <elf-symbol name='__interceptor___isoc99_scanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_scanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___isoc99_sscanf -->
-    <elf-symbol name='__interceptor___isoc99_sscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_sscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___isoc99_vfscanf -->
-    <elf-symbol name='__interceptor___isoc99_vfscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vfscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___isoc99_vscanf -->
-    <elf-symbol name='__interceptor___isoc99_vscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___isoc99_vsscanf -->
-    <elf-symbol name='__interceptor___isoc99_vsscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vsscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___libc_memalign -->
-    <elf-symbol name='__interceptor___libc_memalign' type='func-type' binding='global-binding' alias='__libc_memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor___libc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='__libc_memalign' is-defined='yes'/>
     <!-- __interceptor___lxstat -->
-    <elf-symbol name='__interceptor___lxstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___lxstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___lxstat64 -->
-    <elf-symbol name='__interceptor___lxstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___lxstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___res_iclose -->
-    <elf-symbol name='__interceptor___res_iclose' type='func-type' binding='global-binding' alias='__res_iclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor___res_iclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='__res_iclose' is-defined='yes'/>
     <!-- __interceptor___sigsetjmp -->
-    <elf-symbol name='__interceptor___sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___xpg_strerror_r -->
-    <elf-symbol name='__interceptor___xpg_strerror_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xpg_strerror_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor___xstat -->
-    <elf-symbol name='__interceptor___xstat' type='func-type' binding='global-binding' alias='__xstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='__xstat' is-defined='yes'/>
     <!-- __interceptor___xstat64 -->
-    <elf-symbol name='__interceptor___xstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor__exit -->
-    <elf-symbol name='__interceptor__exit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor__exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor__setjmp -->
-    <elf-symbol name='__interceptor__setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor__setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_abort -->
-    <elf-symbol name='__interceptor_abort' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_abort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_accept -->
-    <elf-symbol name='__interceptor_accept' type='func-type' binding='global-binding' alias='accept' is-defined='yes'/>
+    <elf-symbol name='__interceptor_accept' type='func-type' binding='global-binding' visibility='default-visibility' alias='accept' is-defined='yes'/>
     <!-- __interceptor_accept4 -->
-    <elf-symbol name='__interceptor_accept4' type='func-type' binding='global-binding' alias='accept4' is-defined='yes'/>
+    <elf-symbol name='__interceptor_accept4' type='func-type' binding='global-binding' visibility='default-visibility' alias='accept4' is-defined='yes'/>
     <!-- __interceptor_asctime -->
-    <elf-symbol name='__interceptor_asctime' type='func-type' binding='global-binding' alias='asctime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_asctime' type='func-type' binding='global-binding' visibility='default-visibility' alias='asctime' is-defined='yes'/>
     <!-- __interceptor_asctime_r -->
-    <elf-symbol name='__interceptor_asctime_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_asctime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_atexit -->
-    <elf-symbol name='__interceptor_atexit' type='func-type' binding='global-binding' alias='atexit' is-defined='yes'/>
+    <elf-symbol name='__interceptor_atexit' type='func-type' binding='global-binding' visibility='default-visibility' alias='atexit' is-defined='yes'/>
     <!-- __interceptor_backtrace -->
-    <elf-symbol name='__interceptor_backtrace' type='func-type' binding='global-binding' alias='backtrace' is-defined='yes'/>
+    <elf-symbol name='__interceptor_backtrace' type='func-type' binding='global-binding' visibility='default-visibility' alias='backtrace' is-defined='yes'/>
     <!-- __interceptor_backtrace_symbols -->
-    <elf-symbol name='__interceptor_backtrace_symbols' type='func-type' binding='global-binding' alias='backtrace_symbols' is-defined='yes'/>
+    <elf-symbol name='__interceptor_backtrace_symbols' type='func-type' binding='global-binding' visibility='default-visibility' alias='backtrace_symbols' is-defined='yes'/>
     <!-- __interceptor_bind -->
-    <elf-symbol name='__interceptor_bind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_calloc -->
-    <elf-symbol name='__interceptor_calloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_canonicalize_file_name -->
-    <elf-symbol name='__interceptor_canonicalize_file_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_canonicalize_file_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_cfree -->
-    <elf-symbol name='__interceptor_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_clock_getres -->
-    <elf-symbol name='__interceptor_clock_getres' type='func-type' binding='global-binding' alias='clock_getres' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' alias='clock_getres' is-defined='yes'/>
     <!-- __interceptor_clock_gettime -->
-    <elf-symbol name='__interceptor_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_clock_settime -->
-    <elf-symbol name='__interceptor_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_close -->
-    <elf-symbol name='__interceptor_close' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_confstr -->
-    <elf-symbol name='__interceptor_confstr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_confstr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_connect -->
-    <elf-symbol name='__interceptor_connect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_creat -->
-    <elf-symbol name='__interceptor_creat' type='func-type' binding='global-binding' alias='creat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_creat' type='func-type' binding='global-binding' visibility='default-visibility' alias='creat' is-defined='yes'/>
     <!-- __interceptor_creat64 -->
-    <elf-symbol name='__interceptor_creat64' type='func-type' binding='global-binding' alias='creat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_creat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='creat64' is-defined='yes'/>
     <!-- __interceptor_ctime -->
-    <elf-symbol name='__interceptor_ctime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ctime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ctime_r -->
-    <elf-symbol name='__interceptor_ctime_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ctime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_dlclose -->
-    <elf-symbol name='__interceptor_dlclose' type='func-type' binding='global-binding' alias='dlclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dlclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='dlclose' is-defined='yes'/>
     <!-- __interceptor_dlopen -->
-    <elf-symbol name='__interceptor_dlopen' type='func-type' binding='global-binding' alias='dlopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dlopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='dlopen' is-defined='yes'/>
     <!-- __interceptor_drand48_r -->
-    <elf-symbol name='__interceptor_drand48_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_drand48_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_dup -->
-    <elf-symbol name='__interceptor_dup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_dup2 -->
-    <elf-symbol name='__interceptor_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_dup3 -->
-    <elf-symbol name='__interceptor_dup3' type='func-type' binding='global-binding' alias='dup3' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup3' type='func-type' binding='global-binding' visibility='default-visibility' alias='dup3' is-defined='yes'/>
     <!-- __interceptor_epoll_create -->
-    <elf-symbol name='__interceptor_epoll_create' type='func-type' binding='global-binding' alias='epoll_create' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' alias='epoll_create' is-defined='yes'/>
     <!-- __interceptor_epoll_create1 -->
-    <elf-symbol name='__interceptor_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_epoll_ctl -->
-    <elf-symbol name='__interceptor_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_epoll_wait -->
-    <elf-symbol name='__interceptor_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ether_aton -->
-    <elf-symbol name='__interceptor_ether_aton' type='func-type' binding='global-binding' alias='ether_aton' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_aton' type='func-type' binding='global-binding' visibility='default-visibility' alias='ether_aton' is-defined='yes'/>
     <!-- __interceptor_ether_aton_r -->
-    <elf-symbol name='__interceptor_ether_aton_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_aton_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ether_hostton -->
-    <elf-symbol name='__interceptor_ether_hostton' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_hostton' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ether_line -->
-    <elf-symbol name='__interceptor_ether_line' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ether_ntoa -->
-    <elf-symbol name='__interceptor_ether_ntoa' type='func-type' binding='global-binding' alias='ether_ntoa' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntoa' type='func-type' binding='global-binding' visibility='default-visibility' alias='ether_ntoa' is-defined='yes'/>
     <!-- __interceptor_ether_ntoa_r -->
-    <elf-symbol name='__interceptor_ether_ntoa_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntoa_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ether_ntohost -->
-    <elf-symbol name='__interceptor_ether_ntohost' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntohost' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_eventfd -->
-    <elf-symbol name='__interceptor_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_fclose -->
-    <elf-symbol name='__interceptor_fclose' type='func-type' binding='global-binding' alias='fclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='fclose' is-defined='yes'/>
     <!-- __interceptor_fflush -->
-    <elf-symbol name='__interceptor_fflush' type='func-type' binding='global-binding' alias='fflush' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fflush' type='func-type' binding='global-binding' visibility='default-visibility' alias='fflush' is-defined='yes'/>
     <!-- __interceptor_fopen -->
-    <elf-symbol name='__interceptor_fopen' type='func-type' binding='global-binding' alias='fopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='fopen' is-defined='yes'/>
     <!-- __interceptor_fork -->
-    <elf-symbol name='__interceptor_fork' type='func-type' binding='global-binding' alias='fork' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fork' type='func-type' binding='global-binding' visibility='default-visibility' alias='fork' is-defined='yes'/>
     <!-- __interceptor_fread -->
-    <elf-symbol name='__interceptor_fread' type='func-type' binding='global-binding' alias='fread' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fread' type='func-type' binding='global-binding' visibility='default-visibility' alias='fread' is-defined='yes'/>
     <!-- __interceptor_free -->
-    <elf-symbol name='__interceptor_free' type='func-type' binding='global-binding' alias='free' is-defined='yes'/>
+    <elf-symbol name='__interceptor_free' type='func-type' binding='global-binding' visibility='default-visibility' alias='free' is-defined='yes'/>
     <!-- __interceptor_freopen -->
-    <elf-symbol name='__interceptor_freopen' type='func-type' binding='global-binding' alias='freopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_freopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='freopen' is-defined='yes'/>
     <!-- __interceptor_frexp -->
-    <elf-symbol name='__interceptor_frexp' type='func-type' binding='global-binding' alias='frexp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexp' type='func-type' binding='global-binding' visibility='default-visibility' alias='frexp' is-defined='yes'/>
     <!-- __interceptor_frexpf -->
-    <elf-symbol name='__interceptor_frexpf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexpf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_frexpl -->
-    <elf-symbol name='__interceptor_frexpl' type='func-type' binding='global-binding' alias='frexpl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexpl' type='func-type' binding='global-binding' visibility='default-visibility' alias='frexpl' is-defined='yes'/>
     <!-- __interceptor_fscanf -->
-    <elf-symbol name='__interceptor_fscanf' type='func-type' binding='global-binding' alias='fscanf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fscanf' type='func-type' binding='global-binding' visibility='default-visibility' alias='fscanf' is-defined='yes'/>
     <!-- __interceptor_fstat -->
-    <elf-symbol name='__interceptor_fstat' type='func-type' binding='global-binding' alias='fstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstat' is-defined='yes'/>
     <!-- __interceptor_fstat64 -->
-    <elf-symbol name='__interceptor_fstat64' type='func-type' binding='global-binding' alias='fstat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstat64' is-defined='yes'/>
     <!-- __interceptor_fstatfs -->
-    <elf-symbol name='__interceptor_fstatfs' type='func-type' binding='global-binding' alias='fstatfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstatfs' is-defined='yes'/>
     <!-- __interceptor_fstatfs64 -->
-    <elf-symbol name='__interceptor_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_fstatvfs -->
-    <elf-symbol name='__interceptor_fstatvfs' type='func-type' binding='global-binding' alias='fstatvfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatvfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstatvfs' is-defined='yes'/>
     <!-- __interceptor_fstatvfs64 -->
-    <elf-symbol name='__interceptor_fstatvfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatvfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_fwrite -->
-    <elf-symbol name='__interceptor_fwrite' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fwrite' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_get_current_dir_name -->
-    <elf-symbol name='__interceptor_get_current_dir_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_get_current_dir_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getaddrinfo -->
-    <elf-symbol name='__interceptor_getaddrinfo' type='func-type' binding='global-binding' alias='getaddrinfo' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getaddrinfo' type='func-type' binding='global-binding' visibility='default-visibility' alias='getaddrinfo' is-defined='yes'/>
     <!-- __interceptor_getcwd -->
-    <elf-symbol name='__interceptor_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getdelim -->
-    <elf-symbol name='__interceptor_getdelim' type='func-type' binding='global-binding' alias='getdelim' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getdelim' type='func-type' binding='global-binding' visibility='default-visibility' alias='getdelim' is-defined='yes'/>
     <!-- __interceptor_getgroups -->
-    <elf-symbol name='__interceptor_getgroups' type='func-type' binding='global-binding' alias='getgroups' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' alias='getgroups' is-defined='yes'/>
     <!-- __interceptor_gethostbyaddr -->
-    <elf-symbol name='__interceptor_gethostbyaddr' type='func-type' binding='global-binding' alias='gethostbyaddr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyaddr' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyaddr' is-defined='yes'/>
     <!-- __interceptor_gethostbyaddr_r -->
-    <elf-symbol name='__interceptor_gethostbyaddr_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyaddr_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_gethostbyname -->
-    <elf-symbol name='__interceptor_gethostbyname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_gethostbyname2 -->
-    <elf-symbol name='__interceptor_gethostbyname2' type='func-type' binding='global-binding' alias='gethostbyname2' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname2' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyname2' is-defined='yes'/>
     <!-- __interceptor_gethostbyname2_r -->
-    <elf-symbol name='__interceptor_gethostbyname2_r' type='func-type' binding='global-binding' alias='gethostbyname2_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname2_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyname2_r' is-defined='yes'/>
     <!-- __interceptor_gethostbyname_r -->
-    <elf-symbol name='__interceptor_gethostbyname_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_gethostent -->
-    <elf-symbol name='__interceptor_gethostent' type='func-type' binding='global-binding' alias='gethostent' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostent' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostent' is-defined='yes'/>
     <!-- __interceptor_gethostent_r -->
-    <elf-symbol name='__interceptor_gethostent_r' type='func-type' binding='global-binding' alias='gethostent_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostent_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostent_r' is-defined='yes'/>
     <!-- __interceptor_getitimer -->
-    <elf-symbol name='__interceptor_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getline -->
-    <elf-symbol name='__interceptor_getline' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getline' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getmntent -->
-    <elf-symbol name='__interceptor_getmntent' type='func-type' binding='global-binding' alias='getmntent' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getmntent' type='func-type' binding='global-binding' visibility='default-visibility' alias='getmntent' is-defined='yes'/>
     <!-- __interceptor_getmntent_r -->
-    <elf-symbol name='__interceptor_getmntent_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getmntent_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getpeername -->
-    <elf-symbol name='__interceptor_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_getsockname -->
-    <elf-symbol name='__interceptor_getsockname' type='func-type' binding='global-binding' alias='getsockname' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' alias='getsockname' is-defined='yes'/>
     <!-- __interceptor_getsockopt -->
-    <elf-symbol name='__interceptor_getsockopt' type='func-type' binding='global-binding' alias='getsockopt' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' alias='getsockopt' is-defined='yes'/>
     <!-- __interceptor_gettimeofday -->
-    <elf-symbol name='__interceptor_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_gmtime -->
-    <elf-symbol name='__interceptor_gmtime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gmtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_gmtime_r -->
-    <elf-symbol name='__interceptor_gmtime_r' type='func-type' binding='global-binding' alias='gmtime_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gmtime_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gmtime_r' is-defined='yes'/>
     <!-- __interceptor_iconv -->
-    <elf-symbol name='__interceptor_iconv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_iconv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_inet_aton -->
-    <elf-symbol name='__interceptor_inet_aton' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_aton' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_inet_ntop -->
-    <elf-symbol name='__interceptor_inet_ntop' type='func-type' binding='global-binding' alias='inet_ntop' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_ntop' type='func-type' binding='global-binding' visibility='default-visibility' alias='inet_ntop' is-defined='yes'/>
     <!-- __interceptor_inet_pton -->
-    <elf-symbol name='__interceptor_inet_pton' type='func-type' binding='global-binding' alias='inet_pton' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_pton' type='func-type' binding='global-binding' visibility='default-visibility' alias='inet_pton' is-defined='yes'/>
     <!-- __interceptor_initgroups -->
-    <elf-symbol name='__interceptor_initgroups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_initgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_inotify_init -->
-    <elf-symbol name='__interceptor_inotify_init' type='func-type' binding='global-binding' alias='inotify_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='inotify_init' is-defined='yes'/>
     <!-- __interceptor_inotify_init1 -->
-    <elf-symbol name='__interceptor_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_ioctl -->
-    <elf-symbol name='__interceptor_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_kill -->
-    <elf-symbol name='__interceptor_kill' type='func-type' binding='global-binding' alias='kill' is-defined='yes'/>
+    <elf-symbol name='__interceptor_kill' type='func-type' binding='global-binding' visibility='default-visibility' alias='kill' is-defined='yes'/>
     <!-- __interceptor_lgamma -->
-    <elf-symbol name='__interceptor_lgamma' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgamma' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_lgamma_r -->
-    <elf-symbol name='__interceptor_lgamma_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgamma_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_lgammaf -->
-    <elf-symbol name='__interceptor_lgammaf' type='func-type' binding='global-binding' alias='lgammaf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammaf' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammaf' is-defined='yes'/>
     <!-- __interceptor_lgammaf_r -->
-    <elf-symbol name='__interceptor_lgammaf_r' type='func-type' binding='global-binding' alias='lgammaf_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammaf_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammaf_r' is-defined='yes'/>
     <!-- __interceptor_lgammal -->
-    <elf-symbol name='__interceptor_lgammal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_lgammal_r -->
-    <elf-symbol name='__interceptor_lgammal_r' type='func-type' binding='global-binding' alias='lgammal_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammal_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammal_r' is-defined='yes'/>
     <!-- __interceptor_listen -->
-    <elf-symbol name='__interceptor_listen' type='func-type' binding='global-binding' alias='listen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_listen' type='func-type' binding='global-binding' visibility='default-visibility' alias='listen' is-defined='yes'/>
     <!-- __interceptor_localtime -->
-    <elf-symbol name='__interceptor_localtime' type='func-type' binding='global-binding' alias='localtime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_localtime' type='func-type' binding='global-binding' visibility='default-visibility' alias='localtime' is-defined='yes'/>
     <!-- __interceptor_localtime_r -->
-    <elf-symbol name='__interceptor_localtime_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_localtime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_longjmp -->
-    <elf-symbol name='__interceptor_longjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_longjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_lrand48_r -->
-    <elf-symbol name='__interceptor_lrand48_r' type='func-type' binding='global-binding' alias='lrand48_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lrand48_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lrand48_r' is-defined='yes'/>
     <!-- __interceptor_lstat -->
-    <elf-symbol name='__interceptor_lstat' type='func-type' binding='global-binding' alias='lstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='lstat' is-defined='yes'/>
     <!-- __interceptor_lstat64 -->
-    <elf-symbol name='__interceptor_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_malloc -->
-    <elf-symbol name='__interceptor_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_malloc_usable_size -->
-    <elf-symbol name='__interceptor_malloc_usable_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_malloc_usable_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mbsnrtowcs -->
-    <elf-symbol name='__interceptor_mbsnrtowcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbsnrtowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mbsrtowcs -->
-    <elf-symbol name='__interceptor_mbsrtowcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbsrtowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mbstowcs -->
-    <elf-symbol name='__interceptor_mbstowcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbstowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_memalign -->
-    <elf-symbol name='__interceptor_memalign' type='func-type' binding='global-binding' alias='memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='memalign' is-defined='yes'/>
     <!-- __interceptor_memchr -->
-    <elf-symbol name='__interceptor_memchr' type='func-type' binding='global-binding' alias='memchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='memchr' is-defined='yes'/>
     <!-- __interceptor_memcmp -->
-    <elf-symbol name='__interceptor_memcmp' type='func-type' binding='global-binding' alias='memcmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memcmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='memcmp' is-defined='yes'/>
     <!-- __interceptor_memcpy -->
-    <elf-symbol name='__interceptor_memcpy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memcpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_memmove -->
-    <elf-symbol name='__interceptor_memmove' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memmove' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_memrchr -->
-    <elf-symbol name='__interceptor_memrchr' type='func-type' binding='global-binding' alias='memrchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memrchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='memrchr' is-defined='yes'/>
     <!-- __interceptor_memset -->
-    <elf-symbol name='__interceptor_memset' type='func-type' binding='global-binding' alias='memset' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memset' type='func-type' binding='global-binding' visibility='default-visibility' alias='memset' is-defined='yes'/>
     <!-- __interceptor_mlock -->
-    <elf-symbol name='__interceptor_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mlockall -->
-    <elf-symbol name='__interceptor_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mmap -->
-    <elf-symbol name='__interceptor_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_mmap64 -->
-    <elf-symbol name='__interceptor_mmap64' type='func-type' binding='global-binding' alias='mmap64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mmap64' type='func-type' binding='global-binding' visibility='default-visibility' alias='mmap64' is-defined='yes'/>
     <!-- __interceptor_modf -->
-    <elf-symbol name='__interceptor_modf' type='func-type' binding='global-binding' alias='modf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modf' type='func-type' binding='global-binding' visibility='default-visibility' alias='modf' is-defined='yes'/>
     <!-- __interceptor_modff -->
-    <elf-symbol name='__interceptor_modff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_modfl -->
-    <elf-symbol name='__interceptor_modfl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modfl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_munlock -->
-    <elf-symbol name='__interceptor_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_munlockall -->
-    <elf-symbol name='__interceptor_munlockall' type='func-type' binding='global-binding' alias='munlockall' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' alias='munlockall' is-defined='yes'/>
     <!-- __interceptor_munmap -->
-    <elf-symbol name='__interceptor_munmap' type='func-type' binding='global-binding' alias='munmap' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munmap' type='func-type' binding='global-binding' visibility='default-visibility' alias='munmap' is-defined='yes'/>
     <!-- __interceptor_nanosleep -->
-    <elf-symbol name='__interceptor_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_on_exit -->
-    <elf-symbol name='__interceptor_on_exit' type='func-type' binding='global-binding' alias='on_exit' is-defined='yes'/>
+    <elf-symbol name='__interceptor_on_exit' type='func-type' binding='global-binding' visibility='default-visibility' alias='on_exit' is-defined='yes'/>
     <!-- __interceptor_open -->
-    <elf-symbol name='__interceptor_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_open64 -->
-    <elf-symbol name='__interceptor_open64' type='func-type' binding='global-binding' alias='open64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_open64' type='func-type' binding='global-binding' visibility='default-visibility' alias='open64' is-defined='yes'/>
     <!-- __interceptor_opendir -->
-    <elf-symbol name='__interceptor_opendir' type='func-type' binding='global-binding' alias='opendir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_opendir' type='func-type' binding='global-binding' visibility='default-visibility' alias='opendir' is-defined='yes'/>
     <!-- __interceptor_pipe -->
-    <elf-symbol name='__interceptor_pipe' type='func-type' binding='global-binding' alias='pipe' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pipe' type='func-type' binding='global-binding' visibility='default-visibility' alias='pipe' is-defined='yes'/>
     <!-- __interceptor_pipe2 -->
-    <elf-symbol name='__interceptor_pipe2' type='func-type' binding='global-binding' alias='pipe2' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' alias='pipe2' is-defined='yes'/>
     <!-- __interceptor_poll -->
-    <elf-symbol name='__interceptor_poll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_posix_memalign -->
-    <elf-symbol name='__interceptor_posix_memalign' type='func-type' binding='global-binding' alias='posix_memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor_posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='posix_memalign' is-defined='yes'/>
     <!-- __interceptor_ppoll -->
-    <elf-symbol name='__interceptor_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_prctl -->
-    <elf-symbol name='__interceptor_prctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_prctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pread -->
-    <elf-symbol name='__interceptor_pread' type='func-type' binding='global-binding' alias='pread' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pread' type='func-type' binding='global-binding' visibility='default-visibility' alias='pread' is-defined='yes'/>
     <!-- __interceptor_pread64 -->
-    <elf-symbol name='__interceptor_pread64' type='func-type' binding='global-binding' alias='pread64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pread64' type='func-type' binding='global-binding' visibility='default-visibility' alias='pread64' is-defined='yes'/>
     <!-- __interceptor_preadv -->
-    <elf-symbol name='__interceptor_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_preadv64 -->
-    <elf-symbol name='__interceptor_preadv64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_preadv64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getaffinity_np -->
-    <elf-symbol name='__interceptor_pthread_attr_getaffinity_np' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getaffinity_np' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getdetachstate -->
-    <elf-symbol name='__interceptor_pthread_attr_getdetachstate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getdetachstate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getguardsize -->
-    <elf-symbol name='__interceptor_pthread_attr_getguardsize' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getguardsize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getinheritsched -->
-    <elf-symbol name='__interceptor_pthread_attr_getinheritsched' type='func-type' binding='global-binding' alias='pthread_attr_getinheritsched' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getinheritsched' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getinheritsched' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getschedparam -->
-    <elf-symbol name='__interceptor_pthread_attr_getschedparam' type='func-type' binding='global-binding' alias='pthread_attr_getschedparam' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getschedparam' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getschedparam' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getschedpolicy -->
-    <elf-symbol name='__interceptor_pthread_attr_getschedpolicy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getschedpolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getscope -->
-    <elf-symbol name='__interceptor_pthread_attr_getscope' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getscope' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getstack -->
-    <elf-symbol name='__interceptor_pthread_attr_getstack' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getstack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_attr_getstacksize -->
-    <elf-symbol name='__interceptor_pthread_attr_getstacksize' type='func-type' binding='global-binding' alias='pthread_attr_getstacksize' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getstacksize' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getstacksize' is-defined='yes'/>
     <!-- __interceptor_pthread_barrier_destroy -->
-    <elf-symbol name='__interceptor_pthread_barrier_destroy' type='func-type' binding='global-binding' alias='pthread_barrier_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_barrier_destroy' is-defined='yes'/>
     <!-- __interceptor_pthread_barrier_init -->
-    <elf-symbol name='__interceptor_pthread_barrier_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_barrier_wait -->
-    <elf-symbol name='__interceptor_pthread_barrier_wait' type='func-type' binding='global-binding' alias='pthread_barrier_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_barrier_wait' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_broadcast -->
-    <elf-symbol name='__interceptor_pthread_cond_broadcast' type='func-type' binding='global-binding' alias='pthread_cond_broadcast' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_broadcast' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_broadcast' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_destroy -->
-    <elf-symbol name='__interceptor_pthread_cond_destroy' type='func-type' binding='global-binding' alias='pthread_cond_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_destroy' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_init -->
-    <elf-symbol name='__interceptor_pthread_cond_init' type='func-type' binding='global-binding' alias='pthread_cond_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_init' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_signal -->
-    <elf-symbol name='__interceptor_pthread_cond_signal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_timedwait -->
-    <elf-symbol name='__interceptor_pthread_cond_timedwait' type='func-type' binding='global-binding' alias='pthread_cond_timedwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_timedwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_timedwait' is-defined='yes'/>
     <!-- __interceptor_pthread_cond_wait -->
-    <elf-symbol name='__interceptor_pthread_cond_wait' type='func-type' binding='global-binding' alias='pthread_cond_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_wait' is-defined='yes'/>
     <!-- __interceptor_pthread_create -->
-    <elf-symbol name='__interceptor_pthread_create' type='func-type' binding='global-binding' alias='pthread_create' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_create' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_create' is-defined='yes'/>
     <!-- __interceptor_pthread_detach -->
-    <elf-symbol name='__interceptor_pthread_detach' type='func-type' binding='global-binding' alias='pthread_detach' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_detach' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_detach' is-defined='yes'/>
     <!-- __interceptor_pthread_getschedparam -->
-    <elf-symbol name='__interceptor_pthread_getschedparam' type='func-type' binding='global-binding' alias='pthread_getschedparam' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_getschedparam' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_getschedparam' is-defined='yes'/>
     <!-- __interceptor_pthread_join -->
-    <elf-symbol name='__interceptor_pthread_join' type='func-type' binding='global-binding' alias='pthread_join' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_join' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_join' is-defined='yes'/>
     <!-- __interceptor_pthread_kill -->
-    <elf-symbol name='__interceptor_pthread_kill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_destroy -->
-    <elf-symbol name='__interceptor_pthread_mutex_destroy' type='func-type' binding='global-binding' alias='pthread_mutex_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_destroy' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_init -->
-    <elf-symbol name='__interceptor_pthread_mutex_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_lock -->
-    <elf-symbol name='__interceptor_pthread_mutex_lock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_timedlock -->
-    <elf-symbol name='__interceptor_pthread_mutex_timedlock' type='func-type' binding='global-binding' alias='pthread_mutex_timedlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_timedlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_timedlock' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_trylock -->
-    <elf-symbol name='__interceptor_pthread_mutex_trylock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_trylock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_mutex_unlock -->
-    <elf-symbol name='__interceptor_pthread_mutex_unlock' type='func-type' binding='global-binding' alias='pthread_mutex_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_unlock' is-defined='yes'/>
     <!-- __interceptor_pthread_once -->
-    <elf-symbol name='__interceptor_pthread_once' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_once' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_destroy -->
-    <elf-symbol name='__interceptor_pthread_rwlock_destroy' type='func-type' binding='global-binding' alias='pthread_rwlock_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_destroy' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_init -->
-    <elf-symbol name='__interceptor_pthread_rwlock_init' type='func-type' binding='global-binding' alias='pthread_rwlock_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_init' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_rdlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_rdlock' type='func-type' binding='global-binding' alias='pthread_rwlock_rdlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_rdlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_rdlock' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_timedrdlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_timedrdlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_timedrdlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_timedwrlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_timedwrlock' type='func-type' binding='global-binding' alias='pthread_rwlock_timedwrlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_timedwrlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_timedwrlock' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_tryrdlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_tryrdlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_tryrdlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_trywrlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_trywrlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_trywrlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_unlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_unlock' type='func-type' binding='global-binding' alias='pthread_rwlock_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_unlock' is-defined='yes'/>
     <!-- __interceptor_pthread_rwlock_wrlock -->
-    <elf-symbol name='__interceptor_pthread_rwlock_wrlock' type='func-type' binding='global-binding' alias='pthread_rwlock_wrlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_wrlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_wrlock' is-defined='yes'/>
     <!-- __interceptor_pthread_setname_np -->
-    <elf-symbol name='__interceptor_pthread_setname_np' type='func-type' binding='global-binding' alias='pthread_setname_np' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_setname_np' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_setname_np' is-defined='yes'/>
     <!-- __interceptor_pthread_spin_destroy -->
-    <elf-symbol name='__interceptor_pthread_spin_destroy' type='func-type' binding='global-binding' alias='pthread_spin_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_destroy' is-defined='yes'/>
     <!-- __interceptor_pthread_spin_init -->
-    <elf-symbol name='__interceptor_pthread_spin_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_spin_lock -->
-    <elf-symbol name='__interceptor_pthread_spin_lock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pthread_spin_trylock -->
-    <elf-symbol name='__interceptor_pthread_spin_trylock' type='func-type' binding='global-binding' alias='pthread_spin_trylock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_trylock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_trylock' is-defined='yes'/>
     <!-- __interceptor_pthread_spin_unlock -->
-    <elf-symbol name='__interceptor_pthread_spin_unlock' type='func-type' binding='global-binding' alias='pthread_spin_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_unlock' is-defined='yes'/>
     <!-- __interceptor_ptrace -->
-    <elf-symbol name='__interceptor_ptrace' type='func-type' binding='global-binding' alias='ptrace' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' alias='ptrace' is-defined='yes'/>
     <!-- __interceptor_puts -->
-    <elf-symbol name='__interceptor_puts' type='func-type' binding='global-binding' alias='puts' is-defined='yes'/>
+    <elf-symbol name='__interceptor_puts' type='func-type' binding='global-binding' visibility='default-visibility' alias='puts' is-defined='yes'/>
     <!-- __interceptor_pvalloc -->
-    <elf-symbol name='__interceptor_pvalloc' type='func-type' binding='global-binding' alias='pvalloc' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='pvalloc' is-defined='yes'/>
     <!-- __interceptor_pwrite -->
-    <elf-symbol name='__interceptor_pwrite' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwrite' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pwrite64 -->
-    <elf-symbol name='__interceptor_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pwritev -->
-    <elf-symbol name='__interceptor_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_pwritev64 -->
-    <elf-symbol name='__interceptor_pwritev64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwritev64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_raise -->
-    <elf-symbol name='__interceptor_raise' type='func-type' binding='global-binding' alias='raise' is-defined='yes'/>
+    <elf-symbol name='__interceptor_raise' type='func-type' binding='global-binding' visibility='default-visibility' alias='raise' is-defined='yes'/>
     <!-- __interceptor_random_r -->
-    <elf-symbol name='__interceptor_random_r' type='func-type' binding='global-binding' alias='random_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_random_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='random_r' is-defined='yes'/>
     <!-- __interceptor_read -->
-    <elf-symbol name='__interceptor_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_readdir -->
-    <elf-symbol name='__interceptor_readdir' type='func-type' binding='global-binding' alias='readdir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir' is-defined='yes'/>
     <!-- __interceptor_readdir64 -->
-    <elf-symbol name='__interceptor_readdir64' type='func-type' binding='global-binding' alias='readdir64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir64' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir64' is-defined='yes'/>
     <!-- __interceptor_readdir64_r -->
-    <elf-symbol name='__interceptor_readdir64_r' type='func-type' binding='global-binding' alias='readdir64_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir64_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir64_r' is-defined='yes'/>
     <!-- __interceptor_readdir_r -->
-    <elf-symbol name='__interceptor_readdir_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_readv -->
-    <elf-symbol name='__interceptor_readv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_realloc -->
-    <elf-symbol name='__interceptor_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_realpath -->
-    <elf-symbol name='__interceptor_realpath' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_realpath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_recv -->
-    <elf-symbol name='__interceptor_recv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_recvmsg -->
-    <elf-symbol name='__interceptor_recvmsg' type='func-type' binding='global-binding' alias='recvmsg' is-defined='yes'/>
+    <elf-symbol name='__interceptor_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' alias='recvmsg' is-defined='yes'/>
     <!-- __interceptor_remquo -->
-    <elf-symbol name='__interceptor_remquo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_remquof -->
-    <elf-symbol name='__interceptor_remquof' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquof' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_remquol -->
-    <elf-symbol name='__interceptor_remquol' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquol' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_rmdir -->
-    <elf-symbol name='__interceptor_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_scandir -->
-    <elf-symbol name='__interceptor_scandir' type='func-type' binding='global-binding' alias='scandir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scandir' type='func-type' binding='global-binding' visibility='default-visibility' alias='scandir' is-defined='yes'/>
     <!-- __interceptor_scandir64 -->
-    <elf-symbol name='__interceptor_scandir64' type='func-type' binding='global-binding' alias='scandir64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scandir64' type='func-type' binding='global-binding' visibility='default-visibility' alias='scandir64' is-defined='yes'/>
     <!-- __interceptor_scanf -->
-    <elf-symbol name='__interceptor_scanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sched_getaffinity -->
-    <elf-symbol name='__interceptor_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sem_destroy -->
-    <elf-symbol name='__interceptor_sem_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sem_getvalue -->
-    <elf-symbol name='__interceptor_sem_getvalue' type='func-type' binding='global-binding' alias='sem_getvalue' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_getvalue' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_getvalue' is-defined='yes'/>
     <!-- __interceptor_sem_init -->
-    <elf-symbol name='__interceptor_sem_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sem_post -->
-    <elf-symbol name='__interceptor_sem_post' type='func-type' binding='global-binding' alias='sem_post' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_post' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_post' is-defined='yes'/>
     <!-- __interceptor_sem_timedwait -->
-    <elf-symbol name='__interceptor_sem_timedwait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_timedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sem_trywait -->
-    <elf-symbol name='__interceptor_sem_trywait' type='func-type' binding='global-binding' alias='sem_trywait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_trywait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_trywait' is-defined='yes'/>
     <!-- __interceptor_sem_wait -->
-    <elf-symbol name='__interceptor_sem_wait' type='func-type' binding='global-binding' alias='sem_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_wait' is-defined='yes'/>
     <!-- __interceptor_send -->
-    <elf-symbol name='__interceptor_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sendmsg -->
-    <elf-symbol name='__interceptor_sendmsg' type='func-type' binding='global-binding' alias='sendmsg' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' alias='sendmsg' is-defined='yes'/>
     <!-- __interceptor_setitimer -->
-    <elf-symbol name='__interceptor_setitimer' type='func-type' binding='global-binding' alias='setitimer' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' alias='setitimer' is-defined='yes'/>
     <!-- __interceptor_setjmp -->
-    <elf-symbol name='__interceptor_setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_setlocale -->
-    <elf-symbol name='__interceptor_setlocale' type='func-type' binding='global-binding' alias='setlocale' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setlocale' type='func-type' binding='global-binding' visibility='default-visibility' alias='setlocale' is-defined='yes'/>
     <!-- __interceptor_shmctl -->
-    <elf-symbol name='__interceptor_shmctl' type='func-type' binding='global-binding' alias='shmctl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' alias='shmctl' is-defined='yes'/>
     <!-- __interceptor_sigaction -->
-    <elf-symbol name='__interceptor_sigaction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigaction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sigemptyset -->
-    <elf-symbol name='__interceptor_sigemptyset' type='func-type' binding='global-binding' alias='sigemptyset' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigemptyset' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigemptyset' is-defined='yes'/>
     <!-- __interceptor_sigfillset -->
-    <elf-symbol name='__interceptor_sigfillset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigfillset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_siglongjmp -->
-    <elf-symbol name='__interceptor_siglongjmp' type='func-type' binding='global-binding' alias='siglongjmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_siglongjmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='siglongjmp' is-defined='yes'/>
     <!-- __interceptor_signal -->
-    <elf-symbol name='__interceptor_signal' type='func-type' binding='global-binding' alias='signal' is-defined='yes'/>
+    <elf-symbol name='__interceptor_signal' type='func-type' binding='global-binding' visibility='default-visibility' alias='signal' is-defined='yes'/>
     <!-- __interceptor_signalfd -->
-    <elf-symbol name='__interceptor_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sigpending -->
-    <elf-symbol name='__interceptor_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sigprocmask -->
-    <elf-symbol name='__interceptor_sigprocmask' type='func-type' binding='global-binding' alias='sigprocmask' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigprocmask' is-defined='yes'/>
     <!-- __interceptor_sigsetjmp -->
-    <elf-symbol name='__interceptor_sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sigsuspend -->
-    <elf-symbol name='__interceptor_sigsuspend' type='func-type' binding='global-binding' alias='sigsuspend' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigsuspend' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigsuspend' is-defined='yes'/>
     <!-- __interceptor_sigtimedwait -->
-    <elf-symbol name='__interceptor_sigtimedwait' type='func-type' binding='global-binding' alias='sigtimedwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigtimedwait' is-defined='yes'/>
     <!-- __interceptor_sigwait -->
-    <elf-symbol name='__interceptor_sigwait' type='func-type' binding='global-binding' alias='sigwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigwait' is-defined='yes'/>
     <!-- __interceptor_sigwaitinfo -->
-    <elf-symbol name='__interceptor_sigwaitinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigwaitinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sincos -->
-    <elf-symbol name='__interceptor_sincos' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincos' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sincosf -->
-    <elf-symbol name='__interceptor_sincosf' type='func-type' binding='global-binding' alias='sincosf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincosf' type='func-type' binding='global-binding' visibility='default-visibility' alias='sincosf' is-defined='yes'/>
     <!-- __interceptor_sincosl -->
-    <elf-symbol name='__interceptor_sincosl' type='func-type' binding='global-binding' alias='sincosl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincosl' type='func-type' binding='global-binding' visibility='default-visibility' alias='sincosl' is-defined='yes'/>
     <!-- __interceptor_sleep -->
-    <elf-symbol name='__interceptor_sleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_socket -->
-    <elf-symbol name='__interceptor_socket' type='func-type' binding='global-binding' alias='socket' is-defined='yes'/>
+    <elf-symbol name='__interceptor_socket' type='func-type' binding='global-binding' visibility='default-visibility' alias='socket' is-defined='yes'/>
     <!-- __interceptor_socketpair -->
-    <elf-symbol name='__interceptor_socketpair' type='func-type' binding='global-binding' alias='socketpair' is-defined='yes'/>
+    <elf-symbol name='__interceptor_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' alias='socketpair' is-defined='yes'/>
     <!-- __interceptor_sscanf -->
-    <elf-symbol name='__interceptor_sscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_stat -->
-    <elf-symbol name='__interceptor_stat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_stat64 -->
-    <elf-symbol name='__interceptor_stat64' type='func-type' binding='global-binding' alias='stat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_stat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='stat64' is-defined='yes'/>
     <!-- __interceptor_statfs -->
-    <elf-symbol name='__interceptor_statfs' type='func-type' binding='global-binding' alias='statfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='statfs' is-defined='yes'/>
     <!-- __interceptor_statfs64 -->
-    <elf-symbol name='__interceptor_statfs64' type='func-type' binding='global-binding' alias='statfs64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' alias='statfs64' is-defined='yes'/>
     <!-- __interceptor_statvfs -->
-    <elf-symbol name='__interceptor_statvfs' type='func-type' binding='global-binding' alias='statvfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statvfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='statvfs' is-defined='yes'/>
     <!-- __interceptor_statvfs64 -->
-    <elf-symbol name='__interceptor_statvfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statvfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strcasecmp -->
-    <elf-symbol name='__interceptor_strcasecmp' type='func-type' binding='global-binding' alias='strcasecmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcasecmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcasecmp' is-defined='yes'/>
     <!-- __interceptor_strchr -->
-    <elf-symbol name='__interceptor_strchr' type='func-type' binding='global-binding' alias='strchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='strchr' is-defined='yes'/>
     <!-- __interceptor_strchrnul -->
-    <elf-symbol name='__interceptor_strchrnul' type='func-type' binding='global-binding' alias='strchrnul' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strchrnul' type='func-type' binding='global-binding' visibility='default-visibility' alias='strchrnul' is-defined='yes'/>
     <!-- __interceptor_strcmp -->
-    <elf-symbol name='__interceptor_strcmp' type='func-type' binding='global-binding' alias='strcmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcmp' is-defined='yes'/>
     <!-- __interceptor_strcpy -->
-    <elf-symbol name='__interceptor_strcpy' type='func-type' binding='global-binding' alias='strcpy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcpy' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcpy' is-defined='yes'/>
     <!-- __interceptor_strdup -->
-    <elf-symbol name='__interceptor_strdup' type='func-type' binding='global-binding' alias='strdup' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strdup' type='func-type' binding='global-binding' visibility='default-visibility' alias='strdup' is-defined='yes'/>
     <!-- __interceptor_strerror -->
-    <elf-symbol name='__interceptor_strerror' type='func-type' binding='global-binding' alias='strerror' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strerror' type='func-type' binding='global-binding' visibility='default-visibility' alias='strerror' is-defined='yes'/>
     <!-- __interceptor_strerror_r -->
-    <elf-symbol name='__interceptor_strerror_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strerror_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strlen -->
-    <elf-symbol name='__interceptor_strlen' type='func-type' binding='global-binding' alias='strlen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strlen' type='func-type' binding='global-binding' visibility='default-visibility' alias='strlen' is-defined='yes'/>
     <!-- __interceptor_strncasecmp -->
-    <elf-symbol name='__interceptor_strncasecmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncasecmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strncmp -->
-    <elf-symbol name='__interceptor_strncmp' type='func-type' binding='global-binding' alias='strncmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strncmp' is-defined='yes'/>
     <!-- __interceptor_strncpy -->
-    <elf-symbol name='__interceptor_strncpy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strptime -->
-    <elf-symbol name='__interceptor_strptime' type='func-type' binding='global-binding' alias='strptime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strptime' type='func-type' binding='global-binding' visibility='default-visibility' alias='strptime' is-defined='yes'/>
     <!-- __interceptor_strrchr -->
-    <elf-symbol name='__interceptor_strrchr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strrchr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strstr -->
-    <elf-symbol name='__interceptor_strstr' type='func-type' binding='global-binding' alias='strstr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strstr' type='func-type' binding='global-binding' visibility='default-visibility' alias='strstr' is-defined='yes'/>
     <!-- __interceptor_strtoimax -->
-    <elf-symbol name='__interceptor_strtoimax' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strtoimax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_strtoumax -->
-    <elf-symbol name='__interceptor_strtoumax' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strtoumax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_sysinfo -->
-    <elf-symbol name='__interceptor_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_tcgetattr -->
-    <elf-symbol name='__interceptor_tcgetattr' type='func-type' binding='global-binding' alias='tcgetattr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tcgetattr' type='func-type' binding='global-binding' visibility='default-visibility' alias='tcgetattr' is-defined='yes'/>
     <!-- __interceptor_tempnam -->
-    <elf-symbol name='__interceptor_tempnam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tempnam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_textdomain -->
-    <elf-symbol name='__interceptor_textdomain' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_textdomain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_time -->
-    <elf-symbol name='__interceptor_time' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_times -->
-    <elf-symbol name='__interceptor_times' type='func-type' binding='global-binding' alias='times' is-defined='yes'/>
+    <elf-symbol name='__interceptor_times' type='func-type' binding='global-binding' visibility='default-visibility' alias='times' is-defined='yes'/>
     <!-- __interceptor_tmpnam -->
-    <elf-symbol name='__interceptor_tmpnam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tmpnam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_tmpnam_r -->
-    <elf-symbol name='__interceptor_tmpnam_r' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tmpnam_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_unlink -->
-    <elf-symbol name='__interceptor_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_usleep -->
-    <elf-symbol name='__interceptor_usleep' type='func-type' binding='global-binding' alias='usleep' is-defined='yes'/>
+    <elf-symbol name='__interceptor_usleep' type='func-type' binding='global-binding' visibility='default-visibility' alias='usleep' is-defined='yes'/>
     <!-- __interceptor_valloc -->
-    <elf-symbol name='__interceptor_valloc' type='func-type' binding='global-binding' alias='valloc' is-defined='yes'/>
+    <elf-symbol name='__interceptor_valloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='valloc' is-defined='yes'/>
     <!-- __interceptor_vfscanf -->
-    <elf-symbol name='__interceptor_vfscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vfscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_vscanf -->
-    <elf-symbol name='__interceptor_vscanf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_vsscanf -->
-    <elf-symbol name='__interceptor_vsscanf' type='func-type' binding='global-binding' alias='vsscanf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vsscanf' type='func-type' binding='global-binding' visibility='default-visibility' alias='vsscanf' is-defined='yes'/>
     <!-- __interceptor_wait -->
-    <elf-symbol name='__interceptor_wait' type='func-type' binding='global-binding' alias='wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='wait' is-defined='yes'/>
     <!-- __interceptor_wait3 -->
-    <elf-symbol name='__interceptor_wait3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_wait4 -->
-    <elf-symbol name='__interceptor_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_waitid -->
-    <elf-symbol name='__interceptor_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_waitpid -->
-    <elf-symbol name='__interceptor_waitpid' type='func-type' binding='global-binding' alias='waitpid' is-defined='yes'/>
+    <elf-symbol name='__interceptor_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' alias='waitpid' is-defined='yes'/>
     <!-- __interceptor_wcsnrtombs -->
-    <elf-symbol name='__interceptor_wcsnrtombs' type='func-type' binding='global-binding' alias='wcsnrtombs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcsnrtombs' type='func-type' binding='global-binding' visibility='default-visibility' alias='wcsnrtombs' is-defined='yes'/>
     <!-- __interceptor_wcsrtombs -->
-    <elf-symbol name='__interceptor_wcsrtombs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcsrtombs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_wcstombs -->
-    <elf-symbol name='__interceptor_wcstombs' type='func-type' binding='global-binding' alias='wcstombs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcstombs' type='func-type' binding='global-binding' visibility='default-visibility' alias='wcstombs' is-defined='yes'/>
     <!-- __interceptor_wordexp -->
-    <elf-symbol name='__interceptor_wordexp' type='func-type' binding='global-binding' alias='wordexp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wordexp' type='func-type' binding='global-binding' visibility='default-visibility' alias='wordexp' is-defined='yes'/>
     <!-- __interceptor_write -->
-    <elf-symbol name='__interceptor_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__interceptor_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __interceptor_writev -->
-    <elf-symbol name='__interceptor_writev' type='func-type' binding='global-binding' alias='writev' is-defined='yes'/>
+    <elf-symbol name='__interceptor_writev' type='func-type' binding='global-binding' visibility='default-visibility' alias='writev' is-defined='yes'/>
     <!-- __isoc99_fscanf -->
-    <elf-symbol name='__isoc99_fscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_fscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_fscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_fscanf' is-defined='yes'/>
     <!-- __isoc99_scanf -->
-    <elf-symbol name='__isoc99_scanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_scanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_scanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_scanf' is-defined='yes'/>
     <!-- __isoc99_sscanf -->
-    <elf-symbol name='__isoc99_sscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_sscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_sscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_sscanf' is-defined='yes'/>
     <!-- __isoc99_vfscanf -->
-    <elf-symbol name='__isoc99_vfscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vfscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vfscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vfscanf' is-defined='yes'/>
     <!-- __isoc99_vscanf -->
-    <elf-symbol name='__isoc99_vscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vscanf' is-defined='yes'/>
     <!-- __isoc99_vsscanf -->
-    <elf-symbol name='__isoc99_vsscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vsscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vsscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vsscanf' is-defined='yes'/>
     <!-- __libc_memalign -->
-    <elf-symbol name='__libc_memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __lxstat -->
-    <elf-symbol name='__lxstat' type='func-type' binding='weak-binding' alias='__interceptor___lxstat' is-defined='yes'/>
+    <elf-symbol name='__lxstat' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___lxstat' is-defined='yes'/>
     <!-- __lxstat64 -->
-    <elf-symbol name='__lxstat64' type='func-type' binding='weak-binding' alias='__interceptor___lxstat64' is-defined='yes'/>
+    <elf-symbol name='__lxstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___lxstat64' is-defined='yes'/>
     <!-- __res_iclose -->
-    <elf-symbol name='__res_iclose' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__res_iclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_cov -->
-    <elf-symbol name='__sanitizer_cov' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_cov' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_cov_dump -->
-    <elf-symbol name='__sanitizer_cov_dump' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_cov_dump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_report_error_summary -->
-    <elf-symbol name='__sanitizer_report_error_summary' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_report_error_summary' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_sandbox_on_notify -->
-    <elf-symbol name='__sanitizer_sandbox_on_notify' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_sandbox_on_notify' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_set_report_path -->
-    <elf-symbol name='__sanitizer_set_report_path' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_set_report_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_accept -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_accept' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_accept' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_accept4 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_accept4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_accept4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_access -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_access' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_access' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_acct -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_acct' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_acct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_add_key -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_add_key' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_add_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_adjtimex -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_adjtimex' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_adjtimex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_alarm -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_alarm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_alarm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_bdflush -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_bdflush' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_bdflush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_bind -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_bind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_brk -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_brk' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_brk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_capget -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_capget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_capget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_capset -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_capset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_capset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_chdir -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_chdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_chmod -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_chmod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_chown -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_chown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_chown16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_chown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_chroot -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_chroot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chroot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_clock_adjtime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_adjtime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_adjtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_clock_getres -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_getres' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_clock_gettime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_clock_nanosleep -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_clock_settime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_close -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_close' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_connect -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_connect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_creat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_creat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_creat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_delete_module -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_delete_module' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_delete_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_dup -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_dup2 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_dup3 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_epoll_create -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_epoll_create1 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_epoll_ctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_epoll_pwait -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_pwait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_pwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_epoll_wait -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_eventfd -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_eventfd2 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_exit -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_exit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_exit_group -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_exit_group' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_exit_group' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_faccessat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_faccessat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_faccessat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchdir -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchmod -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchmod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchmodat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchmodat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchmodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchown -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchown16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fchownat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchownat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchownat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fcntl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fcntl64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fdatasync -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fdatasync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fdatasync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fgetxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_flistxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_flistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_flistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_flock -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_flock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_flock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fork -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fork' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fremovexattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fsetxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fstat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fstat64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fstatat64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fstatfs -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fstatfs64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_fsync -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_fsync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fsync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ftruncate -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ftruncate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ftruncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_futimesat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_futimesat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_futimesat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_get_mempolicy -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_get_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_get_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_get_robust_list -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_get_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_get_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getcpu -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getcpu' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getcpu' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getcwd -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getdents -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getdents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getdents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getdents64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getdents64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getdents64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getegid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getegid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getegid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getegid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getegid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getegid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_geteuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_geteuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getgid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getgroups -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getgroups16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_gethostname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_gethostname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getitimer -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getpeername -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getpgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getpgrp -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpgrp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpgrp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getpid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getppid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getppid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getppid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getpriority -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpriority' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getresgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getresgid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getresuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getresuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getrlimit -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getrusage -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getrusage' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getrusage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getsid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getsockname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsockname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getsockopt -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_gettid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_gettid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gettid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_gettimeofday -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_getxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_getxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_init_module -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_init_module' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_init_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_inotify_add_watch -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_add_watch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_add_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_inotify_init -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_inotify_init1 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_inotify_rm_watch -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_rm_watch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_rm_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_io_cancel -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_io_destroy -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_io_getevents -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_getevents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_getevents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_io_setup -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_setup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_setup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_io_submit -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_submit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_submit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ioctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ioperm -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioperm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioperm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ioprio_get -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_get' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ioprio_set -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_set' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ipc -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ipc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ipc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_kexec_load -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_kexec_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_kexec_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_keyctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_keyctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_keyctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_kill -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_kill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lchown -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lchown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lchown16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lchown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lgetxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_link -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_link' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_link' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_linkat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_linkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_linkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_listen -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_listen' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_listxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_listxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_listxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_llistxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_llistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_llistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_llseek -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_llseek' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_llseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lookup_dcookie -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lookup_dcookie' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lookup_dcookie' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lremovexattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lseek -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lseek' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lsetxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lstat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_lstat64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_madvise -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_madvise' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_madvise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mbind -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mbind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mbind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_migrate_pages -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_migrate_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_migrate_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mincore -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mincore' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mincore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mkdir -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mkdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mkdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mkdirat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mkdirat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mkdirat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mknod -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mknod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mknod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mknodat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mknodat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mknodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mlock -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mlockall -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mmap_pgoff -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mmap_pgoff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mmap_pgoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mount -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_move_pages -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_move_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_move_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mprotect -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mprotect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mprotect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_getsetattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_getsetattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_getsetattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_notify -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_notify' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_open -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_timedreceive -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedreceive' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedreceive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_timedsend -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedsend' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedsend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mq_unlink -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_mremap -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_mremap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_msgctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_msgget -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_msgrcv -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgrcv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgrcv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_msgsnd -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgsnd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgsnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_msync -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_msync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_munlock -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_munlockall -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_munlockall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_munmap -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_munmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_name_to_handle_at -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_name_to_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_name_to_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_nanosleep -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_newfstat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_newfstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newfstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_newfstatat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_newfstatat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newfstatat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_newlstat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_newlstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newlstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_newstat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_newstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_newuname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_newuname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newuname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ni_syscall -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ni_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ni_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_nice -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_nice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_nice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_old_getrlimit -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_old_mmap -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_old_readdir -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_readdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_readdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_old_select -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_select' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_oldumount -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_oldumount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_oldumount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_olduname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_olduname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_olduname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_open -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_open_by_handle_at -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_open_by_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_open_by_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_openat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_openat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_openat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pause -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pause' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pciconfig_iobase -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_iobase' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_iobase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pciconfig_read -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pciconfig_write -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_perf_event_open -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_perf_event_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_perf_event_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_personality -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_personality' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_personality' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pipe -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pipe2 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pipe2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pivot_root -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pivot_root' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pivot_root' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_poll -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_poll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ppoll -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pread64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pread64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pread64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_preadv -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_prlimit64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_prlimit64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_prlimit64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_process_vm_readv -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_readv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_process_vm_writev -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_writev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pselect6 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pselect6' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pselect6' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ptrace -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ptrace' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pwrite64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_pwritev -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_quotactl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_quotactl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_quotactl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_read -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_readlink -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_readlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_readlinkat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_readlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_readv -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_readv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_reboot -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_reboot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_reboot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_recv -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_recv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_recvfrom -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvfrom' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvfrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_recvmmsg -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_recvmsg -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_remap_file_pages -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_remap_file_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_remap_file_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_removexattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_removexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_removexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rename -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_renameat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_renameat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_renameat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_request_key -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_request_key' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_request_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_restart_syscall -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_restart_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_restart_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rmdir -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rt_sigpending -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rt_sigprocmask -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rt_sigqueueinfo -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rt_sigtimedwait -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigtimedwait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_rt_tgsigqueueinfo -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_get_priority_max -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_max' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_get_priority_min -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_min' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_getaffinity -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_getparam -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getparam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_getscheduler -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_rr_get_interval -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_rr_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_rr_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_setaffinity -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_setparam -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setparam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_setscheduler -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sched_yield -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_yield' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_yield' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_select -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_select' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_semctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_semctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_semget -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_semget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_semop -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_semop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_semtimedop -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_semtimedop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semtimedop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_send -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sendfile -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sendfile64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sendmmsg -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sendmsg -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sendto -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendto' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_set_mempolicy -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_set_robust_list -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_set_tid_address -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_tid_address' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_tid_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setdomainname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setdomainname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setdomainname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setfsgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setfsgid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setfsuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setfsuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setgid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setgroups -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setgroups16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sethostname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sethostname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setitimer -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setitimer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setns -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setns' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setns' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setpgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setpgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setpriority -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setpriority' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setregid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setregid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setregid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setregid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setregid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setregid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setresgid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setresgid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setresuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setresuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setreuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setreuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setrlimit -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setsid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setsid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setsockopt -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_settimeofday -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_settimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_settimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setuid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setuid16 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_setxattr -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_setxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sgetmask -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sgetmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sgetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_shmat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_shmctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_shmdt -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmdt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmdt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_shmget -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_shutdown -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_signal -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_signal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_signalfd -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_signalfd4 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sigpending -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sigprocmask -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_socket -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_socket' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_socketcall -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_socketcall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socketcall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_socketpair -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_socketpair' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_splice -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_splice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_splice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_spu_create -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_spu_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_spu_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_spu_run -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_spu_run' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_spu_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ssetmask -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ssetmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ssetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_stat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_stat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_stat64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_stat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_statfs -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_statfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_statfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_statfs64 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_statfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_stime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_stime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_swapoff -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_swapoff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_swapoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_swapon -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_swapon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_swapon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_symlink -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_symlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_symlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_symlinkat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_symlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_symlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sync -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_syncfs -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_syncfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_syncfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sysctl -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sysfs -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_sysinfo -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_syslog -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_syslog' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_syslog' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_tee -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_tee' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tee' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_tgkill -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_tgkill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tgkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_time -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_time' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timer_create -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timer_delete -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_delete' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timer_getoverrun -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_getoverrun' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_getoverrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timer_gettime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timer_settime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timerfd_create -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timerfd_gettime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_timerfd_settime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_times -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_times' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_tkill -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_tkill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_truncate -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_truncate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_truncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_umask -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_umask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_umask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_umount -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_umount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_umount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_uname -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_uname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_uname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_unlink -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_unlinkat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_unlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_unshare -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_unshare' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_uselib -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_uselib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_uselib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_ustat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_ustat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ustat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_utime -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_utime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_utimensat -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_utimensat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utimensat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_utimes -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_utimes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utimes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_vfork -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_vfork' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vfork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_vhangup -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_vhangup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vhangup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_vmsplice -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_vmsplice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vmsplice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_wait4 -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_waitid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_waitpid -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_waitpid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_write -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_post_impl_writev -->
-    <elf-symbol name='__sanitizer_syscall_post_impl_writev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_accept -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_accept' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_accept' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_accept4 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_accept4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_accept4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_access -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_access' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_access' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_acct -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_acct' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_acct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_add_key -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_add_key' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_add_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_adjtimex -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_adjtimex' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_adjtimex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_alarm -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_alarm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_alarm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_bdflush -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_bdflush' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_bdflush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_bind -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_bind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_brk -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_brk' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_brk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_capget -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_capget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_capget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_capset -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_capset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_capset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_chdir -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_chmod -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chmod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_chown -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_chown16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_chroot -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chroot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chroot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_clock_adjtime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_adjtime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_adjtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_clock_getres -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_getres' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_clock_gettime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_clock_nanosleep -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_clock_settime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_close -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_close' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_connect -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_connect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_creat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_creat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_creat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_delete_module -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_delete_module' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_delete_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_dup -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_dup2 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_dup3 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_epoll_create -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_epoll_create1 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_epoll_ctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_epoll_pwait -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_pwait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_pwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_epoll_wait -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_eventfd -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_eventfd2 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_exit -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_exit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_exit_group -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_exit_group' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_exit_group' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_faccessat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_faccessat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_faccessat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchdir -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchmod -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchmodat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmodat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchown -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchown16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fchownat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchownat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchownat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fcntl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fcntl64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fdatasync -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fdatasync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fdatasync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fgetxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_flistxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_flistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_flistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_flock -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_flock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_flock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fork -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fork' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fremovexattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fsetxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fstat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fstat64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fstatat64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fstatfs -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fstatfs64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_fsync -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fsync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fsync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ftruncate -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ftruncate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ftruncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_futimesat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_futimesat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_futimesat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_get_mempolicy -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_get_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_get_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_get_robust_list -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_get_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_get_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getcpu -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getcpu' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getcpu' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getcwd -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getdents -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getdents64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getegid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getegid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_geteuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_geteuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getgid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getgroups -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getgroups16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_gethostname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gethostname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getitimer -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getpeername -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getpgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getpgrp -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgrp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgrp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getpid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getppid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getppid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getppid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getpriority -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpriority' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getresgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getresgid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getresuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getresuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getrlimit -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getrusage -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getrusage' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getrusage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getsid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getsockname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getsockopt -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_gettid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gettid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gettid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_gettimeofday -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_getxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_init_module -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_init_module' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_init_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_inotify_add_watch -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_add_watch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_add_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_inotify_init -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_inotify_init1 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_inotify_rm_watch -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_rm_watch' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_rm_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_io_cancel -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_io_destroy -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_io_getevents -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_getevents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_getevents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_io_setup -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_setup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_setup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_io_submit -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_submit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_submit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ioctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ioperm -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioperm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioperm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ioprio_get -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_get' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ioprio_set -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_set' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ipc -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ipc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ipc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_kexec_load -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_kexec_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_kexec_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_keyctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_keyctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_keyctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_kill -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_kill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lchown -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lchown16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lgetxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_link -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_link' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_link' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_linkat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_linkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_linkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_listen -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_listen' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_listxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_listxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_listxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_llistxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_llistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_llistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_llseek -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_llseek' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_llseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lookup_dcookie -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lookup_dcookie' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lookup_dcookie' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lremovexattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lseek -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lseek' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lsetxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lstat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_lstat64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_madvise -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_madvise' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_madvise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mbind -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mbind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mbind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_migrate_pages -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_migrate_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_migrate_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mincore -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mincore' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mincore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mkdir -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mkdirat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdirat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdirat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mknod -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mknod' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mknod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mknodat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mknodat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mknodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mlock -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mlockall -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mmap_pgoff -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mmap_pgoff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mmap_pgoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mount -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_move_pages -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_move_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_move_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mprotect -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mprotect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mprotect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_getsetattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_getsetattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_getsetattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_notify -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_notify' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_open -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_timedreceive -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedreceive' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedreceive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_timedsend -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedsend' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedsend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mq_unlink -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_mremap -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mremap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_msgctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_msgget -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_msgrcv -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgrcv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgrcv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_msgsnd -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgsnd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgsnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_msync -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_munlock -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_munlockall -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munlockall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_munmap -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_name_to_handle_at -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_name_to_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_name_to_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_nanosleep -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_newfstat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_newfstatat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstatat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstatat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_newlstat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newlstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newlstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_newstat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newstat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_newuname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newuname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newuname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ni_syscall -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ni_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ni_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_nice -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_nice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_nice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_old_getrlimit -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_old_mmap -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_old_readdir -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_readdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_readdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_old_select -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_select' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_oldumount -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_oldumount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_oldumount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_olduname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_olduname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_olduname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_open -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_open_by_handle_at -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_open_by_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_open_by_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_openat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_openat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_openat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pause -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pause' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pciconfig_iobase -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_iobase' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_iobase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pciconfig_read -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pciconfig_write -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_perf_event_open -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_perf_event_open' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_perf_event_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_personality -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_personality' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_personality' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pipe -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pipe2 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pivot_root -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pivot_root' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pivot_root' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_poll -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_poll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ppoll -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pread64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pread64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pread64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_preadv -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_prlimit64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_prlimit64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_prlimit64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_process_vm_readv -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_readv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_process_vm_writev -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_writev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pselect6 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pselect6' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pselect6' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ptrace -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ptrace' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pwrite64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_pwritev -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_quotactl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_quotactl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_quotactl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_read -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_readlink -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_readlinkat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_readv -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_reboot -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_reboot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_reboot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_recv -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_recvfrom -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvfrom' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvfrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_recvmmsg -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_recvmsg -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_remap_file_pages -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_remap_file_pages' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_remap_file_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_removexattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_removexattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_removexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rename -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_renameat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_renameat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_renameat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_request_key -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_request_key' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_request_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_restart_syscall -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_restart_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_restart_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rmdir -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rt_sigpending -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rt_sigprocmask -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rt_sigqueueinfo -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rt_sigtimedwait -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigtimedwait' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_rt_tgsigqueueinfo -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_get_priority_max -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_max' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_get_priority_min -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_min' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_getaffinity -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_getparam -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getparam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_getscheduler -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_rr_get_interval -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_rr_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_rr_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_setaffinity -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_setparam -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setparam' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_setscheduler -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sched_yield -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_yield' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_yield' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_select -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_select' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_semctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_semget -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_semop -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_semtimedop -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semtimedop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semtimedop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_send -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_send' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sendfile -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sendfile64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sendmmsg -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sendmsg -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmsg' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sendto -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendto' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_set_mempolicy -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_set_robust_list -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_set_tid_address -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_tid_address' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_tid_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setdomainname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setdomainname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setdomainname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setfsgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setfsgid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setfsuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setfsuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setgid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setgroups -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setgroups16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sethostname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sethostname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setitimer -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setitimer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setns -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setns' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setns' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setpgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setpgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setpriority -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setpriority' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setregid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setregid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setresgid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setresgid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setresuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setresuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setreuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setreuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setrlimit -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setsid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setsid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setsockopt -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_settimeofday -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_settimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_settimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setuid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setuid16 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_setxattr -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setxattr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sgetmask -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sgetmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sgetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_shmat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_shmctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_shmdt -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmdt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmdt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_shmget -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmget' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_shutdown -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_signal -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_signalfd -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_signalfd4 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sigpending -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sigprocmask -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_socket -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socket' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_socketcall -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socketcall' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socketcall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_socketpair -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socketpair' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_splice -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_splice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_splice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_spu_create -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_spu_run -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_run' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ssetmask -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ssetmask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ssetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_stat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_stat64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stat64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_statfs -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_statfs64 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_stime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_swapoff -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_swapoff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_swapoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_swapon -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_swapon' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_swapon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_symlink -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_symlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_symlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_symlinkat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_symlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_symlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sync -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sync' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_syncfs -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_syncfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_syncfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sysctl -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysctl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sysfs -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysfs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_sysinfo -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_syslog -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_syslog' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_syslog' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_tee -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tee' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tee' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_tgkill -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tgkill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tgkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_time -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_time' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timer_create -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timer_delete -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_delete' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timer_getoverrun -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_getoverrun' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_getoverrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timer_gettime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timer_settime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timerfd_create -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timerfd_gettime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_timerfd_settime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_settime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_times -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_times' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_tkill -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tkill' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_truncate -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_truncate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_truncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_umask -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_umask' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_umask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_umount -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_umount' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_umount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_uname -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_uname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_uname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_unlink -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_unlinkat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_unshare -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unshare' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_uselib -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_uselib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_uselib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_ustat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ustat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ustat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_utime -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utime' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_utimensat -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utimensat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utimensat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_utimes -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utimes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utimes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_vfork -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vfork' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vfork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_vhangup -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vhangup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vhangup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_vmsplice -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vmsplice' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vmsplice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_wait4 -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_waitid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_waitpid -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_waitpid' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_write -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_write' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_syscall_pre_impl_writev -->
-    <elf-symbol name='__sanitizer_syscall_pre_impl_writev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_unaligned_load16 -->
-    <elf-symbol name='__sanitizer_unaligned_load16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_unaligned_load32 -->
-    <elf-symbol name='__sanitizer_unaligned_load32' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_unaligned_load64 -->
-    <elf-symbol name='__sanitizer_unaligned_load64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_unaligned_store16 -->
-    <elf-symbol name='__sanitizer_unaligned_store16' type='func-type' binding='global-binding' alias='__tsan_unaligned_write2' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store16' type='func-type' binding='global-binding' visibility='default-visibility' alias='__tsan_unaligned_write2' is-defined='yes'/>
     <!-- __sanitizer_unaligned_store32 -->
-    <elf-symbol name='__sanitizer_unaligned_store32' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __sanitizer_unaligned_store64 -->
-    <elf-symbol name='__sanitizer_unaligned_store64' type='func-type' binding='global-binding' alias='__tsan_unaligned_write8' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store64' type='func-type' binding='global-binding' visibility='default-visibility' alias='__tsan_unaligned_write8' is-defined='yes'/>
     <!-- __sigsetjmp -->
-    <elf-symbol name='__sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_acquire -->
-    <elf-symbol name='__tsan_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_compare_exchange_strong -->
-    <elf-symbol name='__tsan_atomic128_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_compare_exchange_val -->
-    <elf-symbol name='__tsan_atomic128_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_compare_exchange_weak -->
-    <elf-symbol name='__tsan_atomic128_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_exchange -->
-    <elf-symbol name='__tsan_atomic128_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_add -->
-    <elf-symbol name='__tsan_atomic128_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_and -->
-    <elf-symbol name='__tsan_atomic128_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_nand -->
-    <elf-symbol name='__tsan_atomic128_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_or -->
-    <elf-symbol name='__tsan_atomic128_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_sub -->
-    <elf-symbol name='__tsan_atomic128_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_fetch_xor -->
-    <elf-symbol name='__tsan_atomic128_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_load -->
-    <elf-symbol name='__tsan_atomic128_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic128_store -->
-    <elf-symbol name='__tsan_atomic128_store' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_compare_exchange_strong -->
-    <elf-symbol name='__tsan_atomic16_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_compare_exchange_val -->
-    <elf-symbol name='__tsan_atomic16_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_compare_exchange_weak -->
-    <elf-symbol name='__tsan_atomic16_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_exchange -->
-    <elf-symbol name='__tsan_atomic16_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_add -->
-    <elf-symbol name='__tsan_atomic16_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_and -->
-    <elf-symbol name='__tsan_atomic16_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_nand -->
-    <elf-symbol name='__tsan_atomic16_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_or -->
-    <elf-symbol name='__tsan_atomic16_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_sub -->
-    <elf-symbol name='__tsan_atomic16_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_fetch_xor -->
-    <elf-symbol name='__tsan_atomic16_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_load -->
-    <elf-symbol name='__tsan_atomic16_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic16_store -->
-    <elf-symbol name='__tsan_atomic16_store' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_compare_exchange_strong -->
-    <elf-symbol name='__tsan_atomic32_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_compare_exchange_val -->
-    <elf-symbol name='__tsan_atomic32_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_compare_exchange_weak -->
-    <elf-symbol name='__tsan_atomic32_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_exchange -->
-    <elf-symbol name='__tsan_atomic32_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_add -->
-    <elf-symbol name='__tsan_atomic32_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_and -->
-    <elf-symbol name='__tsan_atomic32_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_nand -->
-    <elf-symbol name='__tsan_atomic32_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_or -->
-    <elf-symbol name='__tsan_atomic32_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_sub -->
-    <elf-symbol name='__tsan_atomic32_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_fetch_xor -->
-    <elf-symbol name='__tsan_atomic32_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_load -->
-    <elf-symbol name='__tsan_atomic32_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic32_store -->
-    <elf-symbol name='__tsan_atomic32_store' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_compare_exchange_strong -->
-    <elf-symbol name='__tsan_atomic64_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_compare_exchange_val -->
-    <elf-symbol name='__tsan_atomic64_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_compare_exchange_weak -->
-    <elf-symbol name='__tsan_atomic64_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_exchange -->
-    <elf-symbol name='__tsan_atomic64_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_add -->
-    <elf-symbol name='__tsan_atomic64_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_and -->
-    <elf-symbol name='__tsan_atomic64_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_nand -->
-    <elf-symbol name='__tsan_atomic64_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_or -->
-    <elf-symbol name='__tsan_atomic64_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_sub -->
-    <elf-symbol name='__tsan_atomic64_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_fetch_xor -->
-    <elf-symbol name='__tsan_atomic64_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_load -->
-    <elf-symbol name='__tsan_atomic64_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic64_store -->
-    <elf-symbol name='__tsan_atomic64_store' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_compare_exchange_strong -->
-    <elf-symbol name='__tsan_atomic8_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_compare_exchange_val -->
-    <elf-symbol name='__tsan_atomic8_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_compare_exchange_weak -->
-    <elf-symbol name='__tsan_atomic8_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_exchange -->
-    <elf-symbol name='__tsan_atomic8_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_add -->
-    <elf-symbol name='__tsan_atomic8_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_and -->
-    <elf-symbol name='__tsan_atomic8_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_nand -->
-    <elf-symbol name='__tsan_atomic8_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_or -->
-    <elf-symbol name='__tsan_atomic8_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_sub -->
-    <elf-symbol name='__tsan_atomic8_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_fetch_xor -->
-    <elf-symbol name='__tsan_atomic8_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_load -->
-    <elf-symbol name='__tsan_atomic8_load' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic8_store -->
-    <elf-symbol name='__tsan_atomic8_store' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic_signal_fence -->
-    <elf-symbol name='__tsan_atomic_signal_fence' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic_signal_fence' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_atomic_thread_fence -->
-    <elf-symbol name='__tsan_atomic_thread_fence' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic_thread_fence' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_default_options -->
-    <elf-symbol name='__tsan_default_options' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_default_options' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_func_entry -->
-    <elf-symbol name='__tsan_func_entry' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_func_entry' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_func_exit -->
-    <elf-symbol name='__tsan_func_exit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_func_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_init -->
-    <elf-symbol name='__tsan_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_alloc -->
-    <elf-symbol name='__tsan_java_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_fini -->
-    <elf-symbol name='__tsan_java_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_free -->
-    <elf-symbol name='__tsan_java_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_init -->
-    <elf-symbol name='__tsan_java_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_move -->
-    <elf-symbol name='__tsan_java_move' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_move' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_lock -->
-    <elf-symbol name='__tsan_java_mutex_lock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_lock_rec -->
-    <elf-symbol name='__tsan_java_mutex_lock_rec' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_lock_rec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_read_lock -->
-    <elf-symbol name='__tsan_java_mutex_read_lock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_read_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_read_unlock -->
-    <elf-symbol name='__tsan_java_mutex_read_unlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_read_unlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_unlock -->
-    <elf-symbol name='__tsan_java_mutex_unlock' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_unlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_java_mutex_unlock_rec -->
-    <elf-symbol name='__tsan_java_mutex_unlock_rec' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_unlock_rec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read1 -->
-    <elf-symbol name='__tsan_read1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read16 -->
-    <elf-symbol name='__tsan_read16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read2 -->
-    <elf-symbol name='__tsan_read2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read4 -->
-    <elf-symbol name='__tsan_read4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read8 -->
-    <elf-symbol name='__tsan_read8' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_read_range -->
-    <elf-symbol name='__tsan_read_range' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_read_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_release -->
-    <elf-symbol name='__tsan_release' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_unaligned_read2 -->
-    <elf-symbol name='__tsan_unaligned_read2' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load16' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read2' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load16' is-defined='yes'/>
     <!-- __tsan_unaligned_read4 -->
-    <elf-symbol name='__tsan_unaligned_read4' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load32' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read4' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load32' is-defined='yes'/>
     <!-- __tsan_unaligned_read8 -->
-    <elf-symbol name='__tsan_unaligned_read8' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load64' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read8' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load64' is-defined='yes'/>
     <!-- __tsan_unaligned_write2 -->
-    <elf-symbol name='__tsan_unaligned_write2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_unaligned_write4 -->
-    <elf-symbol name='__tsan_unaligned_write4' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_store32' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write4' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_store32' is-defined='yes'/>
     <!-- __tsan_unaligned_write8 -->
-    <elf-symbol name='__tsan_unaligned_write8' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_vptr_read -->
-    <elf-symbol name='__tsan_vptr_read' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_vptr_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_vptr_update -->
-    <elf-symbol name='__tsan_vptr_update' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_vptr_update' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write1 -->
-    <elf-symbol name='__tsan_write1' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write16 -->
-    <elf-symbol name='__tsan_write16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write2 -->
-    <elf-symbol name='__tsan_write2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write4 -->
-    <elf-symbol name='__tsan_write4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write8 -->
-    <elf-symbol name='__tsan_write8' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __tsan_write_range -->
-    <elf-symbol name='__tsan_write_range' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__tsan_write_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __xpg_strerror_r -->
-    <elf-symbol name='__xpg_strerror_r' type='func-type' binding='weak-binding' alias='__interceptor___xpg_strerror_r' is-defined='yes'/>
+    <elf-symbol name='__xpg_strerror_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___xpg_strerror_r' is-defined='yes'/>
     <!-- __xstat -->
-    <elf-symbol name='__xstat' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__xstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __xstat64 -->
-    <elf-symbol name='__xstat64' type='func-type' binding='weak-binding' alias='__interceptor___xstat64' is-defined='yes'/>
+    <elf-symbol name='__xstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___xstat64' is-defined='yes'/>
     <!-- _exit -->
-    <elf-symbol name='_exit' type='func-type' binding='weak-binding' alias='__interceptor__exit' is-defined='yes'/>
+    <elf-symbol name='_exit' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor__exit' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _setjmp -->
-    <elf-symbol name='_setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- abort -->
-    <elf-symbol name='abort' type='func-type' binding='weak-binding' alias='__interceptor_abort' is-defined='yes'/>
+    <elf-symbol name='abort' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_abort' is-defined='yes'/>
     <!-- accept -->
-    <elf-symbol name='accept' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='accept' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- accept4 -->
-    <elf-symbol name='accept4' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='accept4' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- asctime -->
-    <elf-symbol name='asctime' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='asctime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- asctime_r -->
-    <elf-symbol name='asctime_r' type='func-type' binding='weak-binding' alias='__interceptor_asctime_r' is-defined='yes'/>
+    <elf-symbol name='asctime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_asctime_r' is-defined='yes'/>
     <!-- atexit -->
-    <elf-symbol name='atexit' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='atexit' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- backtrace -->
-    <elf-symbol name='backtrace' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='backtrace' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- backtrace_symbols -->
-    <elf-symbol name='backtrace_symbols' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='backtrace_symbols' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- bind -->
-    <elf-symbol name='bind' type='func-type' binding='weak-binding' alias='__interceptor_bind' is-defined='yes'/>
+    <elf-symbol name='bind' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_bind' is-defined='yes'/>
     <!-- calloc -->
-    <elf-symbol name='calloc' type='func-type' binding='weak-binding' alias='__interceptor_calloc' is-defined='yes'/>
+    <elf-symbol name='calloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_calloc' is-defined='yes'/>
     <!-- canonicalize_file_name -->
-    <elf-symbol name='canonicalize_file_name' type='func-type' binding='weak-binding' alias='__interceptor_canonicalize_file_name' is-defined='yes'/>
+    <elf-symbol name='canonicalize_file_name' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_canonicalize_file_name' is-defined='yes'/>
     <!-- cfree -->
-    <elf-symbol name='cfree' type='func-type' binding='weak-binding' alias='__interceptor_cfree' is-defined='yes'/>
+    <elf-symbol name='cfree' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_cfree' is-defined='yes'/>
     <!-- clock_getres -->
-    <elf-symbol name='clock_getres' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='clock_getres' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- clock_gettime -->
-    <elf-symbol name='clock_gettime' type='func-type' binding='weak-binding' alias='__interceptor_clock_gettime' is-defined='yes'/>
+    <elf-symbol name='clock_gettime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_clock_gettime' is-defined='yes'/>
     <!-- clock_settime -->
-    <elf-symbol name='clock_settime' type='func-type' binding='weak-binding' alias='__interceptor_clock_settime' is-defined='yes'/>
+    <elf-symbol name='clock_settime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_clock_settime' is-defined='yes'/>
     <!-- close -->
-    <elf-symbol name='close' type='func-type' binding='weak-binding' alias='__interceptor_close' is-defined='yes'/>
+    <elf-symbol name='close' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_close' is-defined='yes'/>
     <!-- confstr -->
-    <elf-symbol name='confstr' type='func-type' binding='weak-binding' alias='__interceptor_confstr' is-defined='yes'/>
+    <elf-symbol name='confstr' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_confstr' is-defined='yes'/>
     <!-- connect -->
-    <elf-symbol name='connect' type='func-type' binding='weak-binding' alias='__interceptor_connect' is-defined='yes'/>
+    <elf-symbol name='connect' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_connect' is-defined='yes'/>
     <!-- creat -->
-    <elf-symbol name='creat' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='creat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- creat64 -->
-    <elf-symbol name='creat64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='creat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ctime -->
-    <elf-symbol name='ctime' type='func-type' binding='weak-binding' alias='__interceptor_ctime' is-defined='yes'/>
+    <elf-symbol name='ctime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ctime' is-defined='yes'/>
     <!-- ctime_r -->
-    <elf-symbol name='ctime_r' type='func-type' binding='weak-binding' alias='__interceptor_ctime_r' is-defined='yes'/>
+    <elf-symbol name='ctime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ctime_r' is-defined='yes'/>
     <!-- dlclose -->
-    <elf-symbol name='dlclose' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='dlclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dlopen -->
-    <elf-symbol name='dlopen' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='dlopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- drand48_r -->
-    <elf-symbol name='drand48_r' type='func-type' binding='weak-binding' alias='__interceptor_drand48_r' is-defined='yes'/>
+    <elf-symbol name='drand48_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_drand48_r' is-defined='yes'/>
     <!-- dup -->
-    <elf-symbol name='dup' type='func-type' binding='weak-binding' alias='__interceptor_dup' is-defined='yes'/>
+    <elf-symbol name='dup' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_dup' is-defined='yes'/>
     <!-- dup2 -->
-    <elf-symbol name='dup2' type='func-type' binding='weak-binding' alias='__interceptor_dup2' is-defined='yes'/>
+    <elf-symbol name='dup2' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_dup2' is-defined='yes'/>
     <!-- dup3 -->
-    <elf-symbol name='dup3' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='dup3' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- epoll_create -->
-    <elf-symbol name='epoll_create' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='epoll_create' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- epoll_create1 -->
-    <elf-symbol name='epoll_create1' type='func-type' binding='weak-binding' alias='__interceptor_epoll_create1' is-defined='yes'/>
+    <elf-symbol name='epoll_create1' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_create1' is-defined='yes'/>
     <!-- epoll_ctl -->
-    <elf-symbol name='epoll_ctl' type='func-type' binding='weak-binding' alias='__interceptor_epoll_ctl' is-defined='yes'/>
+    <elf-symbol name='epoll_ctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_ctl' is-defined='yes'/>
     <!-- epoll_wait -->
-    <elf-symbol name='epoll_wait' type='func-type' binding='weak-binding' alias='__interceptor_epoll_wait' is-defined='yes'/>
+    <elf-symbol name='epoll_wait' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_wait' is-defined='yes'/>
     <!-- ether_aton -->
-    <elf-symbol name='ether_aton' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='ether_aton' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ether_aton_r -->
-    <elf-symbol name='ether_aton_r' type='func-type' binding='weak-binding' alias='__interceptor_ether_aton_r' is-defined='yes'/>
+    <elf-symbol name='ether_aton_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_aton_r' is-defined='yes'/>
     <!-- ether_hostton -->
-    <elf-symbol name='ether_hostton' type='func-type' binding='weak-binding' alias='__interceptor_ether_hostton' is-defined='yes'/>
+    <elf-symbol name='ether_hostton' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_hostton' is-defined='yes'/>
     <!-- ether_line -->
-    <elf-symbol name='ether_line' type='func-type' binding='weak-binding' alias='__interceptor_ether_line' is-defined='yes'/>
+    <elf-symbol name='ether_line' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_line' is-defined='yes'/>
     <!-- ether_ntoa -->
-    <elf-symbol name='ether_ntoa' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='ether_ntoa' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ether_ntoa_r -->
-    <elf-symbol name='ether_ntoa_r' type='func-type' binding='weak-binding' alias='__interceptor_ether_ntoa_r' is-defined='yes'/>
+    <elf-symbol name='ether_ntoa_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_ntoa_r' is-defined='yes'/>
     <!-- ether_ntohost -->
-    <elf-symbol name='ether_ntohost' type='func-type' binding='weak-binding' alias='__interceptor_ether_ntohost' is-defined='yes'/>
+    <elf-symbol name='ether_ntohost' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_ntohost' is-defined='yes'/>
     <!-- eventfd -->
-    <elf-symbol name='eventfd' type='func-type' binding='weak-binding' alias='__interceptor_eventfd' is-defined='yes'/>
+    <elf-symbol name='eventfd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_eventfd' is-defined='yes'/>
     <!-- fclose -->
-    <elf-symbol name='fclose' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fflush -->
-    <elf-symbol name='fflush' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fflush' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fopen -->
-    <elf-symbol name='fopen' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fork -->
-    <elf-symbol name='fork' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fork' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fread -->
-    <elf-symbol name='fread' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fread' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- free -->
-    <elf-symbol name='free' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='free' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- freopen -->
-    <elf-symbol name='freopen' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='freopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- frexp -->
-    <elf-symbol name='frexp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='frexp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- frexpf -->
-    <elf-symbol name='frexpf' type='func-type' binding='weak-binding' alias='__interceptor_frexpf' is-defined='yes'/>
+    <elf-symbol name='frexpf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_frexpf' is-defined='yes'/>
     <!-- frexpl -->
-    <elf-symbol name='frexpl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='frexpl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fscanf -->
-    <elf-symbol name='fscanf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fscanf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fstat -->
-    <elf-symbol name='fstat' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fstat64 -->
-    <elf-symbol name='fstat64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fstat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fstatfs -->
-    <elf-symbol name='fstatfs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fstatfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fstatfs64 -->
-    <elf-symbol name='fstatfs64' type='func-type' binding='weak-binding' alias='__interceptor_fstatfs64' is-defined='yes'/>
+    <elf-symbol name='fstatfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fstatfs64' is-defined='yes'/>
     <!-- fstatvfs -->
-    <elf-symbol name='fstatvfs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='fstatvfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fstatvfs64 -->
-    <elf-symbol name='fstatvfs64' type='func-type' binding='weak-binding' alias='__interceptor_fstatvfs64' is-defined='yes'/>
+    <elf-symbol name='fstatvfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fstatvfs64' is-defined='yes'/>
     <!-- fwrite -->
-    <elf-symbol name='fwrite' type='func-type' binding='weak-binding' alias='__interceptor_fwrite' is-defined='yes'/>
+    <elf-symbol name='fwrite' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fwrite' is-defined='yes'/>
     <!-- get_current_dir_name -->
-    <elf-symbol name='get_current_dir_name' type='func-type' binding='weak-binding' alias='__interceptor_get_current_dir_name' is-defined='yes'/>
+    <elf-symbol name='get_current_dir_name' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_get_current_dir_name' is-defined='yes'/>
     <!-- getaddrinfo -->
-    <elf-symbol name='getaddrinfo' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getaddrinfo' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getcwd -->
-    <elf-symbol name='getcwd' type='func-type' binding='weak-binding' alias='__interceptor_getcwd' is-defined='yes'/>
+    <elf-symbol name='getcwd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getcwd' is-defined='yes'/>
     <!-- getdelim -->
-    <elf-symbol name='getdelim' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getdelim' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getgroups -->
-    <elf-symbol name='getgroups' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getgroups' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gethostbyaddr -->
-    <elf-symbol name='gethostbyaddr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gethostbyaddr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gethostbyaddr_r -->
-    <elf-symbol name='gethostbyaddr_r' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyaddr_r' is-defined='yes'/>
+    <elf-symbol name='gethostbyaddr_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyaddr_r' is-defined='yes'/>
     <!-- gethostbyname -->
-    <elf-symbol name='gethostbyname' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyname' is-defined='yes'/>
+    <elf-symbol name='gethostbyname' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyname' is-defined='yes'/>
     <!-- gethostbyname2 -->
-    <elf-symbol name='gethostbyname2' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gethostbyname2' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gethostbyname2_r -->
-    <elf-symbol name='gethostbyname2_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gethostbyname2_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gethostbyname_r -->
-    <elf-symbol name='gethostbyname_r' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyname_r' is-defined='yes'/>
+    <elf-symbol name='gethostbyname_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyname_r' is-defined='yes'/>
     <!-- gethostent -->
-    <elf-symbol name='gethostent' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gethostent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gethostent_r -->
-    <elf-symbol name='gethostent_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gethostent_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getitimer -->
-    <elf-symbol name='getitimer' type='func-type' binding='weak-binding' alias='__interceptor_getitimer' is-defined='yes'/>
+    <elf-symbol name='getitimer' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getitimer' is-defined='yes'/>
     <!-- getline -->
-    <elf-symbol name='getline' type='func-type' binding='weak-binding' alias='__interceptor_getline' is-defined='yes'/>
+    <elf-symbol name='getline' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getline' is-defined='yes'/>
     <!-- getmntent -->
-    <elf-symbol name='getmntent' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getmntent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getmntent_r -->
-    <elf-symbol name='getmntent_r' type='func-type' binding='weak-binding' alias='__interceptor_getmntent_r' is-defined='yes'/>
+    <elf-symbol name='getmntent_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getmntent_r' is-defined='yes'/>
     <!-- getpeername -->
-    <elf-symbol name='getpeername' type='func-type' binding='weak-binding' alias='__interceptor_getpeername' is-defined='yes'/>
+    <elf-symbol name='getpeername' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getpeername' is-defined='yes'/>
     <!-- getsockname -->
-    <elf-symbol name='getsockname' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getsockname' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getsockopt -->
-    <elf-symbol name='getsockopt' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='getsockopt' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gettimeofday -->
-    <elf-symbol name='gettimeofday' type='func-type' binding='weak-binding' alias='__interceptor_gettimeofday' is-defined='yes'/>
+    <elf-symbol name='gettimeofday' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gettimeofday' is-defined='yes'/>
     <!-- gmtime -->
-    <elf-symbol name='gmtime' type='func-type' binding='weak-binding' alias='__interceptor_gmtime' is-defined='yes'/>
+    <elf-symbol name='gmtime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gmtime' is-defined='yes'/>
     <!-- gmtime_r -->
-    <elf-symbol name='gmtime_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='gmtime_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- iconv -->
-    <elf-symbol name='iconv' type='func-type' binding='weak-binding' alias='__interceptor_iconv' is-defined='yes'/>
+    <elf-symbol name='iconv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_iconv' is-defined='yes'/>
     <!-- inet_aton -->
-    <elf-symbol name='inet_aton' type='func-type' binding='weak-binding' alias='__interceptor_inet_aton' is-defined='yes'/>
+    <elf-symbol name='inet_aton' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_inet_aton' is-defined='yes'/>
     <!-- inet_ntop -->
-    <elf-symbol name='inet_ntop' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='inet_ntop' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- inet_pton -->
-    <elf-symbol name='inet_pton' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='inet_pton' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- initgroups -->
-    <elf-symbol name='initgroups' type='func-type' binding='weak-binding' alias='__interceptor_initgroups' is-defined='yes'/>
+    <elf-symbol name='initgroups' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_initgroups' is-defined='yes'/>
     <!-- inotify_init -->
-    <elf-symbol name='inotify_init' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='inotify_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- inotify_init1 -->
-    <elf-symbol name='inotify_init1' type='func-type' binding='weak-binding' alias='__interceptor_inotify_init1' is-defined='yes'/>
+    <elf-symbol name='inotify_init1' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_inotify_init1' is-defined='yes'/>
     <!-- ioctl -->
-    <elf-symbol name='ioctl' type='func-type' binding='weak-binding' alias='__interceptor_ioctl' is-defined='yes'/>
+    <elf-symbol name='ioctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ioctl' is-defined='yes'/>
     <!-- kill -->
-    <elf-symbol name='kill' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='kill' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lgamma -->
-    <elf-symbol name='lgamma' type='func-type' binding='weak-binding' alias='__interceptor_lgamma' is-defined='yes'/>
+    <elf-symbol name='lgamma' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgamma' is-defined='yes'/>
     <!-- lgamma_r -->
-    <elf-symbol name='lgamma_r' type='func-type' binding='weak-binding' alias='__interceptor_lgamma_r' is-defined='yes'/>
+    <elf-symbol name='lgamma_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgamma_r' is-defined='yes'/>
     <!-- lgammaf -->
-    <elf-symbol name='lgammaf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='lgammaf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lgammaf_r -->
-    <elf-symbol name='lgammaf_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='lgammaf_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lgammal -->
-    <elf-symbol name='lgammal' type='func-type' binding='weak-binding' alias='__interceptor_lgammal' is-defined='yes'/>
+    <elf-symbol name='lgammal' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgammal' is-defined='yes'/>
     <!-- lgammal_r -->
-    <elf-symbol name='lgammal_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='lgammal_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- listen -->
-    <elf-symbol name='listen' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='listen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- localtime -->
-    <elf-symbol name='localtime' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='localtime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- localtime_r -->
-    <elf-symbol name='localtime_r' type='func-type' binding='weak-binding' alias='__interceptor_localtime_r' is-defined='yes'/>
+    <elf-symbol name='localtime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_localtime_r' is-defined='yes'/>
     <!-- longjmp -->
-    <elf-symbol name='longjmp' type='func-type' binding='weak-binding' alias='__interceptor_longjmp' is-defined='yes'/>
+    <elf-symbol name='longjmp' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_longjmp' is-defined='yes'/>
     <!-- lrand48_r -->
-    <elf-symbol name='lrand48_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='lrand48_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lstat -->
-    <elf-symbol name='lstat' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='lstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lstat64 -->
-    <elf-symbol name='lstat64' type='func-type' binding='weak-binding' alias='__interceptor_lstat64' is-defined='yes'/>
+    <elf-symbol name='lstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lstat64' is-defined='yes'/>
     <!-- malloc -->
-    <elf-symbol name='malloc' type='func-type' binding='weak-binding' alias='__interceptor_malloc' is-defined='yes'/>
+    <elf-symbol name='malloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_malloc' is-defined='yes'/>
     <!-- malloc_usable_size -->
-    <elf-symbol name='malloc_usable_size' type='func-type' binding='weak-binding' alias='__interceptor_malloc_usable_size' is-defined='yes'/>
+    <elf-symbol name='malloc_usable_size' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_malloc_usable_size' is-defined='yes'/>
     <!-- mbsnrtowcs -->
-    <elf-symbol name='mbsnrtowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbsnrtowcs' is-defined='yes'/>
+    <elf-symbol name='mbsnrtowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbsnrtowcs' is-defined='yes'/>
     <!-- mbsrtowcs -->
-    <elf-symbol name='mbsrtowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbsrtowcs' is-defined='yes'/>
+    <elf-symbol name='mbsrtowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbsrtowcs' is-defined='yes'/>
     <!-- mbstowcs -->
-    <elf-symbol name='mbstowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbstowcs' is-defined='yes'/>
+    <elf-symbol name='mbstowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbstowcs' is-defined='yes'/>
     <!-- memalign -->
-    <elf-symbol name='memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- memchr -->
-    <elf-symbol name='memchr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='memchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- memcmp -->
-    <elf-symbol name='memcmp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='memcmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- memcpy -->
-    <elf-symbol name='memcpy' type='func-type' binding='weak-binding' alias='__interceptor_memcpy' is-defined='yes'/>
+    <elf-symbol name='memcpy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_memcpy' is-defined='yes'/>
     <!-- memmove -->
-    <elf-symbol name='memmove' type='func-type' binding='weak-binding' alias='__interceptor_memmove' is-defined='yes'/>
+    <elf-symbol name='memmove' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_memmove' is-defined='yes'/>
     <!-- memrchr -->
-    <elf-symbol name='memrchr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='memrchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- memset -->
-    <elf-symbol name='memset' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='memset' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- mlock -->
-    <elf-symbol name='mlock' type='func-type' binding='weak-binding' alias='__interceptor_mlock' is-defined='yes'/>
+    <elf-symbol name='mlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mlock' is-defined='yes'/>
     <!-- mlockall -->
-    <elf-symbol name='mlockall' type='func-type' binding='weak-binding' alias='__interceptor_mlockall' is-defined='yes'/>
+    <elf-symbol name='mlockall' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mlockall' is-defined='yes'/>
     <!-- mmap -->
-    <elf-symbol name='mmap' type='func-type' binding='weak-binding' alias='__interceptor_mmap' is-defined='yes'/>
+    <elf-symbol name='mmap' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mmap' is-defined='yes'/>
     <!-- mmap64 -->
-    <elf-symbol name='mmap64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='mmap64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- modf -->
-    <elf-symbol name='modf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='modf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- modff -->
-    <elf-symbol name='modff' type='func-type' binding='weak-binding' alias='__interceptor_modff' is-defined='yes'/>
+    <elf-symbol name='modff' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_modff' is-defined='yes'/>
     <!-- modfl -->
-    <elf-symbol name='modfl' type='func-type' binding='weak-binding' alias='__interceptor_modfl' is-defined='yes'/>
+    <elf-symbol name='modfl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_modfl' is-defined='yes'/>
     <!-- munlock -->
-    <elf-symbol name='munlock' type='func-type' binding='weak-binding' alias='__interceptor_munlock' is-defined='yes'/>
+    <elf-symbol name='munlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_munlock' is-defined='yes'/>
     <!-- munlockall -->
-    <elf-symbol name='munlockall' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='munlockall' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- munmap -->
-    <elf-symbol name='munmap' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='munmap' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- nanosleep -->
-    <elf-symbol name='nanosleep' type='func-type' binding='weak-binding' alias='__interceptor_nanosleep' is-defined='yes'/>
+    <elf-symbol name='nanosleep' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_nanosleep' is-defined='yes'/>
     <!-- on_exit -->
-    <elf-symbol name='on_exit' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='on_exit' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- open -->
-    <elf-symbol name='open' type='func-type' binding='weak-binding' alias='__interceptor_open' is-defined='yes'/>
+    <elf-symbol name='open' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_open' is-defined='yes'/>
     <!-- open64 -->
-    <elf-symbol name='open64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='open64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- opendir -->
-    <elf-symbol name='opendir' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='opendir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pipe -->
-    <elf-symbol name='pipe' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pipe' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pipe2 -->
-    <elf-symbol name='pipe2' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pipe2' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- poll -->
-    <elf-symbol name='poll' type='func-type' binding='weak-binding' alias='__interceptor_poll' is-defined='yes'/>
+    <elf-symbol name='poll' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_poll' is-defined='yes'/>
     <!-- posix_memalign -->
-    <elf-symbol name='posix_memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='posix_memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ppoll -->
-    <elf-symbol name='ppoll' type='func-type' binding='weak-binding' alias='__interceptor_ppoll' is-defined='yes'/>
+    <elf-symbol name='ppoll' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ppoll' is-defined='yes'/>
     <!-- prctl -->
-    <elf-symbol name='prctl' type='func-type' binding='weak-binding' alias='__interceptor_prctl' is-defined='yes'/>
+    <elf-symbol name='prctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_prctl' is-defined='yes'/>
     <!-- pread -->
-    <elf-symbol name='pread' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pread' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pread64 -->
-    <elf-symbol name='pread64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pread64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- preadv -->
-    <elf-symbol name='preadv' type='func-type' binding='weak-binding' alias='__interceptor_preadv' is-defined='yes'/>
+    <elf-symbol name='preadv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_preadv' is-defined='yes'/>
     <!-- preadv64 -->
-    <elf-symbol name='preadv64' type='func-type' binding='weak-binding' alias='__interceptor_preadv64' is-defined='yes'/>
+    <elf-symbol name='preadv64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_preadv64' is-defined='yes'/>
     <!-- pthread_attr_getaffinity_np -->
-    <elf-symbol name='pthread_attr_getaffinity_np' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getaffinity_np' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getaffinity_np' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getaffinity_np' is-defined='yes'/>
     <!-- pthread_attr_getdetachstate -->
-    <elf-symbol name='pthread_attr_getdetachstate' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getdetachstate' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getdetachstate' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getdetachstate' is-defined='yes'/>
     <!-- pthread_attr_getguardsize -->
-    <elf-symbol name='pthread_attr_getguardsize' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getguardsize' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getguardsize' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getguardsize' is-defined='yes'/>
     <!-- pthread_attr_getinheritsched -->
-    <elf-symbol name='pthread_attr_getinheritsched' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getinheritsched' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_attr_getschedparam -->
-    <elf-symbol name='pthread_attr_getschedparam' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getschedparam' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_attr_getschedpolicy -->
-    <elf-symbol name='pthread_attr_getschedpolicy' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getschedpolicy' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getschedpolicy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getschedpolicy' is-defined='yes'/>
     <!-- pthread_attr_getscope -->
-    <elf-symbol name='pthread_attr_getscope' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getscope' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getscope' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getscope' is-defined='yes'/>
     <!-- pthread_attr_getstack -->
-    <elf-symbol name='pthread_attr_getstack' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getstack' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getstack' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getstack' is-defined='yes'/>
     <!-- pthread_attr_getstacksize -->
-    <elf-symbol name='pthread_attr_getstacksize' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getstacksize' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_barrier_destroy -->
-    <elf-symbol name='pthread_barrier_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_barrier_init -->
-    <elf-symbol name='pthread_barrier_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_barrier_init' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_barrier_init' is-defined='yes'/>
     <!-- pthread_barrier_wait -->
-    <elf-symbol name='pthread_barrier_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_cond_broadcast -->
-    <elf-symbol name='pthread_cond_broadcast' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_broadcast' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_cond_destroy -->
-    <elf-symbol name='pthread_cond_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_cond_init -->
-    <elf-symbol name='pthread_cond_init' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_cond_signal -->
-    <elf-symbol name='pthread_cond_signal' type='func-type' binding='weak-binding' alias='__interceptor_pthread_cond_signal' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_signal' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_cond_signal' is-defined='yes'/>
     <!-- pthread_cond_timedwait -->
-    <elf-symbol name='pthread_cond_timedwait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_timedwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_cond_wait -->
-    <elf-symbol name='pthread_cond_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_create -->
-    <elf-symbol name='pthread_create' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_create' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_detach -->
-    <elf-symbol name='pthread_detach' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_detach' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_getschedparam -->
-    <elf-symbol name='pthread_getschedparam' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_getschedparam' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_join -->
-    <elf-symbol name='pthread_join' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_join' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_kill -->
-    <elf-symbol name='pthread_kill' type='func-type' binding='weak-binding' alias='__interceptor_pthread_kill' is-defined='yes'/>
+    <elf-symbol name='pthread_kill' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_kill' is-defined='yes'/>
     <!-- pthread_mutex_destroy -->
-    <elf-symbol name='pthread_mutex_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_mutex_init -->
-    <elf-symbol name='pthread_mutex_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_init' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_init' is-defined='yes'/>
     <!-- pthread_mutex_lock -->
-    <elf-symbol name='pthread_mutex_lock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_lock' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_lock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_lock' is-defined='yes'/>
     <!-- pthread_mutex_timedlock -->
-    <elf-symbol name='pthread_mutex_timedlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_timedlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_mutex_trylock -->
-    <elf-symbol name='pthread_mutex_trylock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_trylock' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_trylock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_trylock' is-defined='yes'/>
     <!-- pthread_mutex_unlock -->
-    <elf-symbol name='pthread_mutex_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_once -->
-    <elf-symbol name='pthread_once' type='func-type' binding='weak-binding' alias='__interceptor_pthread_once' is-defined='yes'/>
+    <elf-symbol name='pthread_once' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_once' is-defined='yes'/>
     <!-- pthread_rwlock_destroy -->
-    <elf-symbol name='pthread_rwlock_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_rwlock_init -->
-    <elf-symbol name='pthread_rwlock_init' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_rwlock_rdlock -->
-    <elf-symbol name='pthread_rwlock_rdlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_rdlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_rwlock_timedrdlock -->
-    <elf-symbol name='pthread_rwlock_timedrdlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_timedrdlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_timedrdlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_timedrdlock' is-defined='yes'/>
     <!-- pthread_rwlock_timedwrlock -->
-    <elf-symbol name='pthread_rwlock_timedwrlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_timedwrlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_rwlock_tryrdlock -->
-    <elf-symbol name='pthread_rwlock_tryrdlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_tryrdlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_tryrdlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_tryrdlock' is-defined='yes'/>
     <!-- pthread_rwlock_trywrlock -->
-    <elf-symbol name='pthread_rwlock_trywrlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_trywrlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_trywrlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_trywrlock' is-defined='yes'/>
     <!-- pthread_rwlock_unlock -->
-    <elf-symbol name='pthread_rwlock_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_rwlock_wrlock -->
-    <elf-symbol name='pthread_rwlock_wrlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_wrlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_setname_np -->
-    <elf-symbol name='pthread_setname_np' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_setname_np' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_spin_destroy -->
-    <elf-symbol name='pthread_spin_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_spin_init -->
-    <elf-symbol name='pthread_spin_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_spin_init' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_spin_init' is-defined='yes'/>
     <!-- pthread_spin_lock -->
-    <elf-symbol name='pthread_spin_lock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_spin_lock' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_lock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_spin_lock' is-defined='yes'/>
     <!-- pthread_spin_trylock -->
-    <elf-symbol name='pthread_spin_trylock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_trylock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pthread_spin_unlock -->
-    <elf-symbol name='pthread_spin_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ptrace -->
-    <elf-symbol name='ptrace' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='ptrace' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- puts -->
-    <elf-symbol name='puts' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='puts' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pvalloc -->
-    <elf-symbol name='pvalloc' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='pvalloc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pwrite -->
-    <elf-symbol name='pwrite' type='func-type' binding='weak-binding' alias='__interceptor_pwrite' is-defined='yes'/>
+    <elf-symbol name='pwrite' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwrite' is-defined='yes'/>
     <!-- pwrite64 -->
-    <elf-symbol name='pwrite64' type='func-type' binding='weak-binding' alias='__interceptor_pwrite64' is-defined='yes'/>
+    <elf-symbol name='pwrite64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwrite64' is-defined='yes'/>
     <!-- pwritev -->
-    <elf-symbol name='pwritev' type='func-type' binding='weak-binding' alias='__interceptor_pwritev' is-defined='yes'/>
+    <elf-symbol name='pwritev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwritev' is-defined='yes'/>
     <!-- pwritev64 -->
-    <elf-symbol name='pwritev64' type='func-type' binding='weak-binding' alias='__interceptor_pwritev64' is-defined='yes'/>
+    <elf-symbol name='pwritev64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwritev64' is-defined='yes'/>
     <!-- raise -->
-    <elf-symbol name='raise' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='raise' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- random_r -->
-    <elf-symbol name='random_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='random_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- read -->
-    <elf-symbol name='read' type='func-type' binding='weak-binding' alias='__interceptor_read' is-defined='yes'/>
+    <elf-symbol name='read' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_read' is-defined='yes'/>
     <!-- readdir -->
-    <elf-symbol name='readdir' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='readdir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- readdir64 -->
-    <elf-symbol name='readdir64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='readdir64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- readdir64_r -->
-    <elf-symbol name='readdir64_r' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='readdir64_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- readdir_r -->
-    <elf-symbol name='readdir_r' type='func-type' binding='weak-binding' alias='__interceptor_readdir_r' is-defined='yes'/>
+    <elf-symbol name='readdir_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_readdir_r' is-defined='yes'/>
     <!-- readv -->
-    <elf-symbol name='readv' type='func-type' binding='weak-binding' alias='__interceptor_readv' is-defined='yes'/>
+    <elf-symbol name='readv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_readv' is-defined='yes'/>
     <!-- realloc -->
-    <elf-symbol name='realloc' type='func-type' binding='weak-binding' alias='__interceptor_realloc' is-defined='yes'/>
+    <elf-symbol name='realloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_realloc' is-defined='yes'/>
     <!-- realpath -->
-    <elf-symbol name='realpath' type='func-type' binding='weak-binding' alias='__interceptor_realpath' is-defined='yes'/>
+    <elf-symbol name='realpath' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_realpath' is-defined='yes'/>
     <!-- recv -->
-    <elf-symbol name='recv' type='func-type' binding='weak-binding' alias='__interceptor_recv' is-defined='yes'/>
+    <elf-symbol name='recv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_recv' is-defined='yes'/>
     <!-- recvmsg -->
-    <elf-symbol name='recvmsg' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='recvmsg' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- remquo -->
-    <elf-symbol name='remquo' type='func-type' binding='weak-binding' alias='__interceptor_remquo' is-defined='yes'/>
+    <elf-symbol name='remquo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquo' is-defined='yes'/>
     <!-- remquof -->
-    <elf-symbol name='remquof' type='func-type' binding='weak-binding' alias='__interceptor_remquof' is-defined='yes'/>
+    <elf-symbol name='remquof' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquof' is-defined='yes'/>
     <!-- remquol -->
-    <elf-symbol name='remquol' type='func-type' binding='weak-binding' alias='__interceptor_remquol' is-defined='yes'/>
+    <elf-symbol name='remquol' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquol' is-defined='yes'/>
     <!-- rmdir -->
-    <elf-symbol name='rmdir' type='func-type' binding='weak-binding' alias='__interceptor_rmdir' is-defined='yes'/>
+    <elf-symbol name='rmdir' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_rmdir' is-defined='yes'/>
     <!-- scandir -->
-    <elf-symbol name='scandir' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='scandir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- scandir64 -->
-    <elf-symbol name='scandir64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='scandir64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- scanf -->
-    <elf-symbol name='scanf' type='func-type' binding='weak-binding' alias='__interceptor_scanf' is-defined='yes'/>
+    <elf-symbol name='scanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_scanf' is-defined='yes'/>
     <!-- sched_getaffinity -->
-    <elf-symbol name='sched_getaffinity' type='func-type' binding='weak-binding' alias='__interceptor_sched_getaffinity' is-defined='yes'/>
+    <elf-symbol name='sched_getaffinity' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sched_getaffinity' is-defined='yes'/>
     <!-- sem_destroy -->
-    <elf-symbol name='sem_destroy' type='func-type' binding='weak-binding' alias='__interceptor_sem_destroy' is-defined='yes'/>
+    <elf-symbol name='sem_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_destroy' is-defined='yes'/>
     <!-- sem_getvalue -->
-    <elf-symbol name='sem_getvalue' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sem_getvalue' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sem_init -->
-    <elf-symbol name='sem_init' type='func-type' binding='weak-binding' alias='__interceptor_sem_init' is-defined='yes'/>
+    <elf-symbol name='sem_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_init' is-defined='yes'/>
     <!-- sem_post -->
-    <elf-symbol name='sem_post' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sem_post' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sem_timedwait -->
-    <elf-symbol name='sem_timedwait' type='func-type' binding='weak-binding' alias='__interceptor_sem_timedwait' is-defined='yes'/>
+    <elf-symbol name='sem_timedwait' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_timedwait' is-defined='yes'/>
     <!-- sem_trywait -->
-    <elf-symbol name='sem_trywait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sem_trywait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sem_wait -->
-    <elf-symbol name='sem_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sem_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- send -->
-    <elf-symbol name='send' type='func-type' binding='weak-binding' alias='__interceptor_send' is-defined='yes'/>
+    <elf-symbol name='send' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_send' is-defined='yes'/>
     <!-- sendmsg -->
-    <elf-symbol name='sendmsg' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sendmsg' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- setitimer -->
-    <elf-symbol name='setitimer' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='setitimer' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- setjmp -->
-    <elf-symbol name='setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- setlocale -->
-    <elf-symbol name='setlocale' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='setlocale' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- shmctl -->
-    <elf-symbol name='shmctl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='shmctl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigaction -->
-    <elf-symbol name='sigaction' type='func-type' binding='weak-binding' alias='__interceptor_sigaction' is-defined='yes'/>
+    <elf-symbol name='sigaction' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigaction' is-defined='yes'/>
     <!-- sigemptyset -->
-    <elf-symbol name='sigemptyset' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sigemptyset' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigfillset -->
-    <elf-symbol name='sigfillset' type='func-type' binding='weak-binding' alias='__interceptor_sigfillset' is-defined='yes'/>
+    <elf-symbol name='sigfillset' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigfillset' is-defined='yes'/>
     <!-- siglongjmp -->
-    <elf-symbol name='siglongjmp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='siglongjmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- signal -->
-    <elf-symbol name='signal' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='signal' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- signalfd -->
-    <elf-symbol name='signalfd' type='func-type' binding='weak-binding' alias='__interceptor_signalfd' is-defined='yes'/>
+    <elf-symbol name='signalfd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_signalfd' is-defined='yes'/>
     <!-- sigpending -->
-    <elf-symbol name='sigpending' type='func-type' binding='weak-binding' alias='__interceptor_sigpending' is-defined='yes'/>
+    <elf-symbol name='sigpending' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigpending' is-defined='yes'/>
     <!-- sigprocmask -->
-    <elf-symbol name='sigprocmask' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sigprocmask' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigsetjmp -->
-    <elf-symbol name='sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigsuspend -->
-    <elf-symbol name='sigsuspend' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sigsuspend' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigtimedwait -->
-    <elf-symbol name='sigtimedwait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sigtimedwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigwait -->
-    <elf-symbol name='sigwait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sigwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sigwaitinfo -->
-    <elf-symbol name='sigwaitinfo' type='func-type' binding='weak-binding' alias='__interceptor_sigwaitinfo' is-defined='yes'/>
+    <elf-symbol name='sigwaitinfo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigwaitinfo' is-defined='yes'/>
     <!-- sincos -->
-    <elf-symbol name='sincos' type='func-type' binding='weak-binding' alias='__interceptor_sincos' is-defined='yes'/>
+    <elf-symbol name='sincos' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sincos' is-defined='yes'/>
     <!-- sincosf -->
-    <elf-symbol name='sincosf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sincosf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sincosl -->
-    <elf-symbol name='sincosl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='sincosl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sleep -->
-    <elf-symbol name='sleep' type='func-type' binding='weak-binding' alias='__interceptor_sleep' is-defined='yes'/>
+    <elf-symbol name='sleep' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sleep' is-defined='yes'/>
     <!-- socket -->
-    <elf-symbol name='socket' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='socket' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- socketpair -->
-    <elf-symbol name='socketpair' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='socketpair' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sscanf -->
-    <elf-symbol name='sscanf' type='func-type' binding='weak-binding' alias='__interceptor_sscanf' is-defined='yes'/>
+    <elf-symbol name='sscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sscanf' is-defined='yes'/>
     <!-- stat -->
-    <elf-symbol name='stat' type='func-type' binding='weak-binding' alias='__interceptor_stat' is-defined='yes'/>
+    <elf-symbol name='stat' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_stat' is-defined='yes'/>
     <!-- stat64 -->
-    <elf-symbol name='stat64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='stat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- statfs -->
-    <elf-symbol name='statfs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='statfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- statfs64 -->
-    <elf-symbol name='statfs64' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='statfs64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- statvfs -->
-    <elf-symbol name='statvfs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='statvfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- statvfs64 -->
-    <elf-symbol name='statvfs64' type='func-type' binding='weak-binding' alias='__interceptor_statvfs64' is-defined='yes'/>
+    <elf-symbol name='statvfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_statvfs64' is-defined='yes'/>
     <!-- strcasecmp -->
-    <elf-symbol name='strcasecmp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strcasecmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strchr -->
-    <elf-symbol name='strchr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strchrnul -->
-    <elf-symbol name='strchrnul' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strchrnul' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strcmp -->
-    <elf-symbol name='strcmp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strcmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strcpy -->
-    <elf-symbol name='strcpy' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strcpy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strdup -->
-    <elf-symbol name='strdup' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strdup' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strerror -->
-    <elf-symbol name='strerror' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strerror' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strerror_r -->
-    <elf-symbol name='strerror_r' type='func-type' binding='weak-binding' alias='__interceptor_strerror_r' is-defined='yes'/>
+    <elf-symbol name='strerror_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strerror_r' is-defined='yes'/>
     <!-- strlen -->
-    <elf-symbol name='strlen' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strlen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strncasecmp -->
-    <elf-symbol name='strncasecmp' type='func-type' binding='weak-binding' alias='__interceptor_strncasecmp' is-defined='yes'/>
+    <elf-symbol name='strncasecmp' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strncasecmp' is-defined='yes'/>
     <!-- strncmp -->
-    <elf-symbol name='strncmp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strncmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strncpy -->
-    <elf-symbol name='strncpy' type='func-type' binding='weak-binding' alias='__interceptor_strncpy' is-defined='yes'/>
+    <elf-symbol name='strncpy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strncpy' is-defined='yes'/>
     <!-- strptime -->
-    <elf-symbol name='strptime' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strptime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strrchr -->
-    <elf-symbol name='strrchr' type='func-type' binding='weak-binding' alias='__interceptor_strrchr' is-defined='yes'/>
+    <elf-symbol name='strrchr' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strrchr' is-defined='yes'/>
     <!-- strstr -->
-    <elf-symbol name='strstr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='strstr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- strtoimax -->
-    <elf-symbol name='strtoimax' type='func-type' binding='weak-binding' alias='__interceptor_strtoimax' is-defined='yes'/>
+    <elf-symbol name='strtoimax' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strtoimax' is-defined='yes'/>
     <!-- strtoumax -->
-    <elf-symbol name='strtoumax' type='func-type' binding='weak-binding' alias='__interceptor_strtoumax' is-defined='yes'/>
+    <elf-symbol name='strtoumax' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strtoumax' is-defined='yes'/>
     <!-- sysinfo -->
-    <elf-symbol name='sysinfo' type='func-type' binding='weak-binding' alias='__interceptor_sysinfo' is-defined='yes'/>
+    <elf-symbol name='sysinfo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sysinfo' is-defined='yes'/>
     <!-- tcgetattr -->
-    <elf-symbol name='tcgetattr' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='tcgetattr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tempnam -->
-    <elf-symbol name='tempnam' type='func-type' binding='weak-binding' alias='__interceptor_tempnam' is-defined='yes'/>
+    <elf-symbol name='tempnam' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tempnam' is-defined='yes'/>
     <!-- textdomain -->
-    <elf-symbol name='textdomain' type='func-type' binding='weak-binding' alias='__interceptor_textdomain' is-defined='yes'/>
+    <elf-symbol name='textdomain' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_textdomain' is-defined='yes'/>
     <!-- time -->
-    <elf-symbol name='time' type='func-type' binding='weak-binding' alias='__interceptor_time' is-defined='yes'/>
+    <elf-symbol name='time' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_time' is-defined='yes'/>
     <!-- times -->
-    <elf-symbol name='times' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='times' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tmpnam -->
-    <elf-symbol name='tmpnam' type='func-type' binding='weak-binding' alias='__interceptor_tmpnam' is-defined='yes'/>
+    <elf-symbol name='tmpnam' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tmpnam' is-defined='yes'/>
     <!-- tmpnam_r -->
-    <elf-symbol name='tmpnam_r' type='func-type' binding='weak-binding' alias='__interceptor_tmpnam_r' is-defined='yes'/>
+    <elf-symbol name='tmpnam_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tmpnam_r' is-defined='yes'/>
     <!-- unlink -->
-    <elf-symbol name='unlink' type='func-type' binding='weak-binding' alias='__interceptor_unlink' is-defined='yes'/>
+    <elf-symbol name='unlink' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_unlink' is-defined='yes'/>
     <!-- usleep -->
-    <elf-symbol name='usleep' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='usleep' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- valloc -->
-    <elf-symbol name='valloc' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='valloc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vfscanf -->
-    <elf-symbol name='vfscanf' type='func-type' binding='weak-binding' alias='__interceptor_vfscanf' is-defined='yes'/>
+    <elf-symbol name='vfscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_vfscanf' is-defined='yes'/>
     <!-- vscanf -->
-    <elf-symbol name='vscanf' type='func-type' binding='weak-binding' alias='__interceptor_vscanf' is-defined='yes'/>
+    <elf-symbol name='vscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_vscanf' is-defined='yes'/>
     <!-- vsscanf -->
-    <elf-symbol name='vsscanf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='vsscanf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- wait -->
-    <elf-symbol name='wait' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- wait3 -->
-    <elf-symbol name='wait3' type='func-type' binding='weak-binding' alias='__interceptor_wait3' is-defined='yes'/>
+    <elf-symbol name='wait3' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wait3' is-defined='yes'/>
     <!-- wait4 -->
-    <elf-symbol name='wait4' type='func-type' binding='weak-binding' alias='__interceptor_wait4' is-defined='yes'/>
+    <elf-symbol name='wait4' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wait4' is-defined='yes'/>
     <!-- waitid -->
-    <elf-symbol name='waitid' type='func-type' binding='weak-binding' alias='__interceptor_waitid' is-defined='yes'/>
+    <elf-symbol name='waitid' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_waitid' is-defined='yes'/>
     <!-- waitpid -->
-    <elf-symbol name='waitpid' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='waitpid' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- wcsnrtombs -->
-    <elf-symbol name='wcsnrtombs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='wcsnrtombs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- wcsrtombs -->
-    <elf-symbol name='wcsrtombs' type='func-type' binding='weak-binding' alias='__interceptor_wcsrtombs' is-defined='yes'/>
+    <elf-symbol name='wcsrtombs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wcsrtombs' is-defined='yes'/>
     <!-- wcstombs -->
-    <elf-symbol name='wcstombs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='wcstombs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- wordexp -->
-    <elf-symbol name='wordexp' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='wordexp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- write -->
-    <elf-symbol name='write' type='func-type' binding='weak-binding' alias='__interceptor_write' is-defined='yes'/>
+    <elf-symbol name='write' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_write' is-defined='yes'/>
     <!-- writev -->
-    <elf-symbol name='writev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='writev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- __asan_cplus_demangle_builtin_types -->
-    <elf-symbol name='__asan_cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __asan_cplus_demangle_operators -->
-    <elf-symbol name='__asan_cplus_demangle_operators' size='1488' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_operators' size='1488' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_clock.cc' language='LANG_C_plus_plus'>
     <!-- namespace __sanitizer -->
index c087eeaf41e4580b6a21481366b872b74876d3c8..dac85c40bbe63d4bf5ed6ffcbd713b45de96fb57 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_create -->
-    <elf-symbol name='hb_blob_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_create_sub_blob -->
-    <elf-symbol name='hb_blob_create_sub_blob' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_create_sub_blob' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_destroy -->
-    <elf-symbol name='hb_blob_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_get_data -->
-    <elf-symbol name='hb_blob_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_get_data_writable -->
-    <elf-symbol name='hb_blob_get_data_writable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_data_writable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_get_empty -->
-    <elf-symbol name='hb_blob_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_get_length -->
-    <elf-symbol name='hb_blob_get_length' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_get_user_data -->
-    <elf-symbol name='hb_blob_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_is_immutable -->
-    <elf-symbol name='hb_blob_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_make_immutable -->
-    <elf-symbol name='hb_blob_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_reference -->
-    <elf-symbol name='hb_blob_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_blob_set_user_data -->
-    <elf-symbol name='hb_blob_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_blob_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_add -->
-    <elf-symbol name='hb_buffer_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_add_codepoints -->
-    <elf-symbol name='hb_buffer_add_codepoints' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_codepoints' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_add_utf16 -->
-    <elf-symbol name='hb_buffer_add_utf16' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_add_utf32 -->
-    <elf-symbol name='hb_buffer_add_utf32' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_add_utf8 -->
-    <elf-symbol name='hb_buffer_add_utf8' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_allocation_successful -->
-    <elf-symbol name='hb_buffer_allocation_successful' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_allocation_successful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_clear_contents -->
-    <elf-symbol name='hb_buffer_clear_contents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_clear_contents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_create -->
-    <elf-symbol name='hb_buffer_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_deserialize_glyphs -->
-    <elf-symbol name='hb_buffer_deserialize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_deserialize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_destroy -->
-    <elf-symbol name='hb_buffer_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_content_type -->
-    <elf-symbol name='hb_buffer_get_content_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_content_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_direction -->
-    <elf-symbol name='hb_buffer_get_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_empty -->
-    <elf-symbol name='hb_buffer_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_flags -->
-    <elf-symbol name='hb_buffer_get_flags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_glyph_infos -->
-    <elf-symbol name='hb_buffer_get_glyph_infos' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_glyph_infos' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_glyph_positions -->
-    <elf-symbol name='hb_buffer_get_glyph_positions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_glyph_positions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_language -->
-    <elf-symbol name='hb_buffer_get_language' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_length -->
-    <elf-symbol name='hb_buffer_get_length' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_replacement_codepoint -->
-    <elf-symbol name='hb_buffer_get_replacement_codepoint' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_replacement_codepoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_script -->
-    <elf-symbol name='hb_buffer_get_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_segment_properties -->
-    <elf-symbol name='hb_buffer_get_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_unicode_funcs -->
-    <elf-symbol name='hb_buffer_get_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_get_user_data -->
-    <elf-symbol name='hb_buffer_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_guess_segment_properties -->
-    <elf-symbol name='hb_buffer_guess_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_guess_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_normalize_glyphs -->
-    <elf-symbol name='hb_buffer_normalize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_normalize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_pre_allocate -->
-    <elf-symbol name='hb_buffer_pre_allocate' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_pre_allocate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_reference -->
-    <elf-symbol name='hb_buffer_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_reset -->
-    <elf-symbol name='hb_buffer_reset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_reverse -->
-    <elf-symbol name='hb_buffer_reverse' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reverse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_reverse_clusters -->
-    <elf-symbol name='hb_buffer_reverse_clusters' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reverse_clusters' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_serialize_format_from_string -->
-    <elf-symbol name='hb_buffer_serialize_format_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_format_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_serialize_format_to_string -->
-    <elf-symbol name='hb_buffer_serialize_format_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_format_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_serialize_glyphs -->
-    <elf-symbol name='hb_buffer_serialize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_serialize_list_formats -->
-    <elf-symbol name='hb_buffer_serialize_list_formats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_list_formats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_content_type -->
-    <elf-symbol name='hb_buffer_set_content_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_content_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_direction -->
-    <elf-symbol name='hb_buffer_set_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_flags -->
-    <elf-symbol name='hb_buffer_set_flags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_language -->
-    <elf-symbol name='hb_buffer_set_language' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_length -->
-    <elf-symbol name='hb_buffer_set_length' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_replacement_codepoint -->
-    <elf-symbol name='hb_buffer_set_replacement_codepoint' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_replacement_codepoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_script -->
-    <elf-symbol name='hb_buffer_set_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_segment_properties -->
-    <elf-symbol name='hb_buffer_set_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_unicode_funcs -->
-    <elf-symbol name='hb_buffer_set_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_buffer_set_user_data -->
-    <elf-symbol name='hb_buffer_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_direction_from_string -->
-    <elf-symbol name='hb_direction_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_direction_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_direction_to_string -->
-    <elf-symbol name='hb_direction_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_direction_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_create -->
-    <elf-symbol name='hb_face_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_create_for_tables -->
-    <elf-symbol name='hb_face_create_for_tables' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_create_for_tables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_destroy -->
-    <elf-symbol name='hb_face_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_get_empty -->
-    <elf-symbol name='hb_face_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_get_glyph_count -->
-    <elf-symbol name='hb_face_get_glyph_count' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_glyph_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_get_index -->
-    <elf-symbol name='hb_face_get_index' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_get_upem -->
-    <elf-symbol name='hb_face_get_upem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_upem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_get_user_data -->
-    <elf-symbol name='hb_face_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_is_immutable -->
-    <elf-symbol name='hb_face_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_make_immutable -->
-    <elf-symbol name='hb_face_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_reference -->
-    <elf-symbol name='hb_face_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_reference_blob -->
-    <elf-symbol name='hb_face_reference_blob' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference_blob' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_reference_table -->
-    <elf-symbol name='hb_face_reference_table' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference_table' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_set_glyph_count -->
-    <elf-symbol name='hb_face_set_glyph_count' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_glyph_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_set_index -->
-    <elf-symbol name='hb_face_set_index' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_set_upem -->
-    <elf-symbol name='hb_face_set_upem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_upem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_face_set_user_data -->
-    <elf-symbol name='hb_face_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_feature_from_string -->
-    <elf-symbol name='hb_feature_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_feature_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_feature_to_string -->
-    <elf-symbol name='hb_feature_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_feature_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_add_glyph_origin_for_direction -->
-    <elf-symbol name='hb_font_add_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_add_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_create -->
-    <elf-symbol name='hb_font_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_create_sub_font -->
-    <elf-symbol name='hb_font_create_sub_font' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_create_sub_font' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_destroy -->
-    <elf-symbol name='hb_font_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_create -->
-    <elf-symbol name='hb_font_funcs_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_destroy -->
-    <elf-symbol name='hb_font_funcs_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_get_empty -->
-    <elf-symbol name='hb_font_funcs_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_get_user_data -->
-    <elf-symbol name='hb_font_funcs_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_is_immutable -->
-    <elf-symbol name='hb_font_funcs_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_make_immutable -->
-    <elf-symbol name='hb_font_funcs_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_reference -->
-    <elf-symbol name='hb_font_funcs_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_contour_point_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_contour_point_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_contour_point_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_extents_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_extents_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_extents_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_from_name_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_from_name_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_from_name_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_h_advance_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_h_advance_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_advance_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_h_kerning_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_h_kerning_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_kerning_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_h_origin_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_h_origin_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_origin_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_name_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_name_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_name_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_v_advance_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_v_advance_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_advance_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_v_kerning_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_v_kerning_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_kerning_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_glyph_v_origin_func -->
-    <elf-symbol name='hb_font_funcs_set_glyph_v_origin_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_origin_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_funcs_set_user_data -->
-    <elf-symbol name='hb_font_funcs_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_empty -->
-    <elf-symbol name='hb_font_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_face -->
-    <elf-symbol name='hb_font_get_face' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_face' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph -->
-    <elf-symbol name='hb_font_get_glyph' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_advance_for_direction -->
-    <elf-symbol name='hb_font_get_glyph_advance_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_advance_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_contour_point -->
-    <elf-symbol name='hb_font_get_glyph_contour_point' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_contour_point' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_contour_point_for_origin -->
-    <elf-symbol name='hb_font_get_glyph_contour_point_for_origin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_contour_point_for_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_extents -->
-    <elf-symbol name='hb_font_get_glyph_extents' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_extents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_extents_for_origin -->
-    <elf-symbol name='hb_font_get_glyph_extents_for_origin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_extents_for_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_from_name -->
-    <elf-symbol name='hb_font_get_glyph_from_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_from_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_h_advance -->
-    <elf-symbol name='hb_font_get_glyph_h_advance' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_advance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_h_kerning -->
-    <elf-symbol name='hb_font_get_glyph_h_kerning' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_kerning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_h_origin -->
-    <elf-symbol name='hb_font_get_glyph_h_origin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_kerning_for_direction -->
-    <elf-symbol name='hb_font_get_glyph_kerning_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_kerning_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_name -->
-    <elf-symbol name='hb_font_get_glyph_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_origin_for_direction -->
-    <elf-symbol name='hb_font_get_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_v_advance -->
-    <elf-symbol name='hb_font_get_glyph_v_advance' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_advance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_v_kerning -->
-    <elf-symbol name='hb_font_get_glyph_v_kerning' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_kerning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_glyph_v_origin -->
-    <elf-symbol name='hb_font_get_glyph_v_origin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_parent -->
-    <elf-symbol name='hb_font_get_parent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_parent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_ppem -->
-    <elf-symbol name='hb_font_get_ppem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_ppem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_scale -->
-    <elf-symbol name='hb_font_get_scale' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_scale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_get_user_data -->
-    <elf-symbol name='hb_font_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_glyph_from_string -->
-    <elf-symbol name='hb_font_glyph_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_glyph_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_glyph_to_string -->
-    <elf-symbol name='hb_font_glyph_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_glyph_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_is_immutable -->
-    <elf-symbol name='hb_font_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_make_immutable -->
-    <elf-symbol name='hb_font_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_reference -->
-    <elf-symbol name='hb_font_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_set_funcs -->
-    <elf-symbol name='hb_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_set_funcs_data -->
-    <elf-symbol name='hb_font_set_funcs_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_funcs_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_set_ppem -->
-    <elf-symbol name='hb_font_set_ppem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_ppem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_set_scale -->
-    <elf-symbol name='hb_font_set_scale' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_scale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_set_user_data -->
-    <elf-symbol name='hb_font_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_font_subtract_glyph_origin_for_direction -->
-    <elf-symbol name='hb_font_subtract_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_font_subtract_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ft_face_create -->
-    <elf-symbol name='hb_ft_face_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ft_face_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ft_face_create_cached -->
-    <elf-symbol name='hb_ft_face_create_cached' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ft_face_create_cached' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ft_font_create -->
-    <elf-symbol name='hb_ft_font_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ft_font_get_face -->
-    <elf-symbol name='hb_ft_font_get_face' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_get_face' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ft_font_set_funcs -->
-    <elf-symbol name='hb_ft_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_glib_get_unicode_funcs -->
-    <elf-symbol name='hb_glib_get_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_glib_get_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_glib_script_from_script -->
-    <elf-symbol name='hb_glib_script_from_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_glib_script_from_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_glib_script_to_script -->
-    <elf-symbol name='hb_glib_script_to_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_glib_script_to_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_language_from_string -->
-    <elf-symbol name='hb_language_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_language_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_language_get_default -->
-    <elf-symbol name='hb_language_get_default' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_language_get_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_language_to_string -->
-    <elf-symbol name='hb_language_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_language_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_font_set_funcs -->
-    <elf-symbol name='hb_ot_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_collect_lookups -->
-    <elf-symbol name='hb_ot_layout_collect_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_collect_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_feature_get_lookups -->
-    <elf-symbol name='hb_ot_layout_feature_get_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_feature_get_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_get_attach_points -->
-    <elf-symbol name='hb_ot_layout_get_attach_points' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_attach_points' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_get_glyph_class -->
-    <elf-symbol name='hb_ot_layout_get_glyph_class' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_glyph_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_get_glyphs_in_class -->
-    <elf-symbol name='hb_ot_layout_get_glyphs_in_class' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_glyphs_in_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_get_ligature_carets -->
-    <elf-symbol name='hb_ot_layout_get_ligature_carets' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_ligature_carets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_get_size_params -->
-    <elf-symbol name='hb_ot_layout_get_size_params' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_size_params' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_has_glyph_classes -->
-    <elf-symbol name='hb_ot_layout_has_glyph_classes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_glyph_classes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_has_positioning -->
-    <elf-symbol name='hb_ot_layout_has_positioning' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_positioning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_has_substitution -->
-    <elf-symbol name='hb_ot_layout_has_substitution' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_substitution' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_language_find_feature -->
-    <elf-symbol name='hb_ot_layout_language_find_feature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_find_feature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_language_get_feature_indexes -->
-    <elf-symbol name='hb_ot_layout_language_get_feature_indexes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_feature_indexes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_language_get_feature_tags -->
-    <elf-symbol name='hb_ot_layout_language_get_feature_tags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_feature_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_language_get_required_feature -->
-    <elf-symbol name='hb_ot_layout_language_get_required_feature' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_required_feature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_language_get_required_feature_index -->
-    <elf-symbol name='hb_ot_layout_language_get_required_feature_index' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_required_feature_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_lookup_collect_glyphs -->
-    <elf-symbol name='hb_ot_layout_lookup_collect_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_collect_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_lookup_substitute_closure -->
-    <elf-symbol name='hb_ot_layout_lookup_substitute_closure' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_substitute_closure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_lookup_would_substitute -->
-    <elf-symbol name='hb_ot_layout_lookup_would_substitute' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_would_substitute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_script_find_language -->
-    <elf-symbol name='hb_ot_layout_script_find_language' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_script_find_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_script_get_language_tags -->
-    <elf-symbol name='hb_ot_layout_script_get_language_tags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_script_get_language_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_table_choose_script -->
-    <elf-symbol name='hb_ot_layout_table_choose_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_choose_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_table_find_script -->
-    <elf-symbol name='hb_ot_layout_table_find_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_find_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_table_get_feature_tags -->
-    <elf-symbol name='hb_ot_layout_table_get_feature_tags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_feature_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_table_get_lookup_count -->
-    <elf-symbol name='hb_ot_layout_table_get_lookup_count' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_lookup_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_layout_table_get_script_tags -->
-    <elf-symbol name='hb_ot_layout_table_get_script_tags' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_script_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_shape_glyphs_closure -->
-    <elf-symbol name='hb_ot_shape_glyphs_closure' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_shape_glyphs_closure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_shape_plan_collect_lookups -->
-    <elf-symbol name='hb_ot_shape_plan_collect_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_shape_plan_collect_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_tag_from_language -->
-    <elf-symbol name='hb_ot_tag_from_language' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_from_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_tag_to_language -->
-    <elf-symbol name='hb_ot_tag_to_language' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_to_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_tag_to_script -->
-    <elf-symbol name='hb_ot_tag_to_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_to_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_ot_tags_from_script -->
-    <elf-symbol name='hb_ot_tags_from_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tags_from_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_script_from_iso15924_tag -->
-    <elf-symbol name='hb_script_from_iso15924_tag' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_script_from_iso15924_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_script_from_string -->
-    <elf-symbol name='hb_script_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_script_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_script_get_horizontal_direction -->
-    <elf-symbol name='hb_script_get_horizontal_direction' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_script_get_horizontal_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_script_to_iso15924_tag -->
-    <elf-symbol name='hb_script_to_iso15924_tag' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_script_to_iso15924_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_segment_properties_equal -->
-    <elf-symbol name='hb_segment_properties_equal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_segment_properties_equal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_segment_properties_hash -->
-    <elf-symbol name='hb_segment_properties_hash' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_segment_properties_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_add -->
-    <elf-symbol name='hb_set_add' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_add_range -->
-    <elf-symbol name='hb_set_add_range' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_add_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_allocation_successful -->
-    <elf-symbol name='hb_set_allocation_successful' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_allocation_successful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_clear -->
-    <elf-symbol name='hb_set_clear' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_create -->
-    <elf-symbol name='hb_set_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_del -->
-    <elf-symbol name='hb_set_del' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_del' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_del_range -->
-    <elf-symbol name='hb_set_del_range' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_del_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_destroy -->
-    <elf-symbol name='hb_set_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_get_empty -->
-    <elf-symbol name='hb_set_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_get_max -->
-    <elf-symbol name='hb_set_get_max' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_get_min -->
-    <elf-symbol name='hb_set_get_min' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_get_population -->
-    <elf-symbol name='hb_set_get_population' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_population' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_get_user_data -->
-    <elf-symbol name='hb_set_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_has -->
-    <elf-symbol name='hb_set_has' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_has' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_intersect -->
-    <elf-symbol name='hb_set_intersect' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_intersect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_invert -->
-    <elf-symbol name='hb_set_invert' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_invert' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_is_empty -->
-    <elf-symbol name='hb_set_is_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_is_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_is_equal -->
-    <elf-symbol name='hb_set_is_equal' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_is_equal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_next -->
-    <elf-symbol name='hb_set_next' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_next_range -->
-    <elf-symbol name='hb_set_next_range' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_next_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_reference -->
-    <elf-symbol name='hb_set_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_set -->
-    <elf-symbol name='hb_set_set' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_set_user_data -->
-    <elf-symbol name='hb_set_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_subtract -->
-    <elf-symbol name='hb_set_subtract' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_subtract' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_symmetric_difference -->
-    <elf-symbol name='hb_set_symmetric_difference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_symmetric_difference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_set_union -->
-    <elf-symbol name='hb_set_union' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_set_union' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape -->
-    <elf-symbol name='hb_shape' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_full -->
-    <elf-symbol name='hb_shape_full' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_full' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_list_shapers -->
-    <elf-symbol name='hb_shape_list_shapers' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_list_shapers' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_create -->
-    <elf-symbol name='hb_shape_plan_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_create_cached -->
-    <elf-symbol name='hb_shape_plan_create_cached' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_create_cached' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_destroy -->
-    <elf-symbol name='hb_shape_plan_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_execute -->
-    <elf-symbol name='hb_shape_plan_execute' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_execute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_get_empty -->
-    <elf-symbol name='hb_shape_plan_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_get_shaper -->
-    <elf-symbol name='hb_shape_plan_get_shaper' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_shaper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_get_user_data -->
-    <elf-symbol name='hb_shape_plan_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_reference -->
-    <elf-symbol name='hb_shape_plan_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_shape_plan_set_user_data -->
-    <elf-symbol name='hb_shape_plan_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_tag_from_string -->
-    <elf-symbol name='hb_tag_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_tag_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_tag_to_string -->
-    <elf-symbol name='hb_tag_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_tag_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_combining_class -->
-    <elf-symbol name='hb_unicode_combining_class' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_combining_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_compose -->
-    <elf-symbol name='hb_unicode_compose' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_compose' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_decompose -->
-    <elf-symbol name='hb_unicode_decompose' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_decompose' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_decompose_compatibility -->
-    <elf-symbol name='hb_unicode_decompose_compatibility' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_decompose_compatibility' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_eastasian_width -->
-    <elf-symbol name='hb_unicode_eastasian_width' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_eastasian_width' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_create -->
-    <elf-symbol name='hb_unicode_funcs_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_destroy -->
-    <elf-symbol name='hb_unicode_funcs_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_get_default -->
-    <elf-symbol name='hb_unicode_funcs_get_default' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_get_empty -->
-    <elf-symbol name='hb_unicode_funcs_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_get_parent -->
-    <elf-symbol name='hb_unicode_funcs_get_parent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_parent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_get_user_data -->
-    <elf-symbol name='hb_unicode_funcs_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_is_immutable -->
-    <elf-symbol name='hb_unicode_funcs_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_make_immutable -->
-    <elf-symbol name='hb_unicode_funcs_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_reference -->
-    <elf-symbol name='hb_unicode_funcs_reference' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_combining_class_func -->
-    <elf-symbol name='hb_unicode_funcs_set_combining_class_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_combining_class_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_compose_func -->
-    <elf-symbol name='hb_unicode_funcs_set_compose_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_compose_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_decompose_compatibility_func -->
-    <elf-symbol name='hb_unicode_funcs_set_decompose_compatibility_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_decompose_compatibility_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_decompose_func -->
-    <elf-symbol name='hb_unicode_funcs_set_decompose_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_decompose_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_eastasian_width_func -->
-    <elf-symbol name='hb_unicode_funcs_set_eastasian_width_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_eastasian_width_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_general_category_func -->
-    <elf-symbol name='hb_unicode_funcs_set_general_category_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_general_category_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_mirroring_func -->
-    <elf-symbol name='hb_unicode_funcs_set_mirroring_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_mirroring_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_script_func -->
-    <elf-symbol name='hb_unicode_funcs_set_script_func' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_script_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_funcs_set_user_data -->
-    <elf-symbol name='hb_unicode_funcs_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_general_category -->
-    <elf-symbol name='hb_unicode_general_category' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_general_category' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_mirroring -->
-    <elf-symbol name='hb_unicode_mirroring' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_mirroring' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_unicode_script -->
-    <elf-symbol name='hb_unicode_script' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_version -->
-    <elf-symbol name='hb_version' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_version_atleast -->
-    <elf-symbol name='hb_version_atleast' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_version_atleast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hb_version_string -->
-    <elf-symbol name='hb_version_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hb_version_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='hb-blob.cc' language='LANG_C_plus_plus'>
     <!-- struct hb_reference_count_t -->
index 851e5f6955d9cefe0f8bc619581bd45b67b90308..38817bd4634afa43c26fa1ea1fdfdeaef5818953 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- vtkTextureIO::Write(char const*, vtkTextureObject*, unsigned int const*, double const*) -->
-    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkTextureIO::Write(char const*, vtkTextureObject*, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, double const*) -->
-    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkPixelTransfer::Blit(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int, void*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitERK14vtkPixelExtentS2_S2_S2_iiPviiS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitERK14vtkPixelExtentS2_S2_S2_iiPviiS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIacEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIacEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIadEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIadEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIafEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIafEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIahEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIahEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIajEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIajEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIalEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIalEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIamEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIamEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIasEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIasEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIatEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIatEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<signed char, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, signed char*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIayEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIayEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIccEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIccEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIchEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIchEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIciEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIciEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIclEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIclEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIctEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIctEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<char, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, char*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIddEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIddEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<double, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, double*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIffEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIffEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIflEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIflEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIftEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIftEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<float, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, float*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned char, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned char*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIicEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIicEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIidEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIidEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIifEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIifEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIihEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIihEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIijEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIijEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIilEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIilEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIimEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIimEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIisEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIisEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIitEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIitEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIixEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIixEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<int, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, int*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned int, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned int*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIldEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIldEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIliEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIliEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIljEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIljEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIllEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIllEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIltEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIltEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIscEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIscEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIshEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIshEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIslEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIslEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIssEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIssEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIstEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIstEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<short, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, short*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIthEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIthEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIttEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIttEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned short, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned short*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<long long, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, long long*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, int, void*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, signed char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, signed char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIycEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIycEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, double>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, double*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIydEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIydEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, float>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, float*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, unsigned char>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, unsigned char*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, unsigned int>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, unsigned int*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIylEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIylEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, unsigned long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, unsigned long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIymEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIymEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIysEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIysEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, unsigned short>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, unsigned short*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIytEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIytEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- int vtkPixelTransfer::Blit<unsigned long long, unsigned long long>(vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, vtkPixelExtent const&, int, unsigned long long*, int, unsigned long long*) -->
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::GetContext() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::SetContext(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::TranslateInputExtent(int const*, int const*, int*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D20TranslateInputExtentEPKiS1_Pi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D20TranslateInputExtentEPKiS1_Pi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::FillInputPortInformation(int, vtkInformation*) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::New() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::vtkImageDataLIC2D() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2DC1Ev' type='func-type' binding='global-binding' alias='_ZN17vtkImageDataLIC2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN17vtkImageDataLIC2DC2Ev' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::vtkImageDataLIC2D() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::~vtkImageDataLIC2D() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::~vtkImageDataLIC2D() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD1Ev' type='func-type' binding='global-binding' alias='_ZN17vtkImageDataLIC2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN17vtkImageDataLIC2DD2Ev' is-defined='yes'/>
     <!-- vtkImageDataLIC2D::~vtkImageDataLIC2D() -->
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::IsSupported(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetStepSize(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::ClearTCoords(vtkDataSet*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetAntiAlias(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetColorMode(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMaskColor(double*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNoiseType(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetUpdateAll() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::PrepareOutput() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToColorLIC() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::RenderInternal(vtkRenderer*, vtkActor*, unsigned long, bool) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetEnhancedLIC(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMapModeBias(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::GetNoiseDataSet() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetLICIntensity(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNoiseDataSet(vtkImageData*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::ValidateContext(vtkRenderer*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToComputeLIC() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::ReportReferences(vtkGarbageCollector*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMaskIntensity(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMaskOnSurface(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMaskThreshold(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMaxNoiseValue(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetMinNoiseValue(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNumberOfSteps(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::UpdateNoiseImage(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::VectorsToTCoords(vtkDataSet*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::VectorsToTCoords(vtkDataObject*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNoiseGrainSize(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::CreateCommunicator(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::CreateCommunicator() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::ProcessInformation(vtkInformation*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetEnhanceContrast(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::CanRenderSurfaceLIC(vtkActor*, int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::InitializeResources() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToGatherVectors() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNoiseTextureSize(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNormalizeVectors(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToRenderGeometry(vtkRenderer*, vtkActor*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetCompositeStrategy(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNoiseGeneratorSeed(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToUpdateOutputData() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetInputArrayToProcess(int, char const*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetInputArrayToProcess(int, int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetNumberOfNoiseLevels(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetGenerateNoiseTexture(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::NeedToUpdateCommunicator() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::ReleaseGraphicsResources(vtkWindow*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetImpulseNoiseProbability(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetImpulseNoiseBackgroundValue(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetLowLICContrastEnhancementFactor(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetHighLICContrastEnhancementFactor(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetLowColorContrastEnhancementFactor(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetHighColorContrastEnhancementFactor(double) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::New() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::GetBounds(vtkDataObject*, double*) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::GetOutput() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetOutputEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetOutputEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::SetEnable(int) -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9SetEnableEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9SetEnableEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterC1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkSurfaceLICPainterC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkSurfaceLICPainterC2Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::vtkSurfaceLICPainter() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkSurfaceLICPainterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkSurfaceLICPainterD2Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter::~vtkSurfaceLICPainter() -->
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::GetContext() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::SetContext(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::AllocateScalars(vtkStructuredGrid*, vtkInformation*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::AllocateOutputData(vtkDataObject*, vtkInformation*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::FillInputPortInformation(int, vtkInformation*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::FillOutputPortInformation(int, vtkInformation*) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::New() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkStructuredGridLIC2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkStructuredGridLIC2DC2Ev' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::vtkStructuredGridLIC2D() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::~vtkStructuredGridLIC2D() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::~vtkStructuredGridLIC2D() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkStructuredGridLIC2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkStructuredGridLIC2DD2Ev' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D::~vtkStructuredGridLIC2D() -->
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::Initialize(vtkPixelExtent const&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, int, double, int, int, int, int) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::AddGuardPixels(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::GetFudgeFactor(int*) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::GetPixelBounds(float*, int, vtkPixelExtent&) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::MakeDecompDisjoint(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, float*) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::MakeDecompDisjoint(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >&) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERSt5dequeI14vtkPixelExtentSaIS1_EES4_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERSt5dequeI14vtkPixelExtentSaIS1_EES4_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::InitializeCompositeExtents(float*) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::New() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::VectorMax(vtkPixelExtent const&, float*) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::VectorMax(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, float*, std::vector<float, std::allocator<float> >&) -->
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkSurfaceLICCompositeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkSurfaceLICCompositeC2Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::vtkSurfaceLICComposite() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::~vtkSurfaceLICComposite() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::~vtkSurfaceLICComposite() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkSurfaceLICCompositeD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkSurfaceLICCompositeD2Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICComposite::~vtkSurfaceLICComposite() -->
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::UpdateBounds(double*) -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::ReportReferences(vtkGarbageCollector*) -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::BuildPainterChain() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::SetSurfaceLICPainter(vtkSurfaceLICPainter*) -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::New() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::vtkSurfaceLICDefaultPainter() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' type='func-type' binding='global-binding' alias='_ZN27vtkSurfaceLICDefaultPainterC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN27vtkSurfaceLICDefaultPainterC1Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' type='func-type' binding='global-binding' alias='_ZN27vtkSurfaceLICDefaultPainterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN27vtkSurfaceLICDefaultPainterD2Ev' is-defined='yes'/>
     <!-- vtkSurfaceLICDefaultPainter::~vtkSurfaceLICDefaultPainter() -->
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::GetContext() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetContext(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::IsSupported(vtkRenderWindow*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetCEShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetEEShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetVTShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::BuildShaders() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetAAHShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetAAVShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetLIC0Shader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetLICIShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetLICNShader(vtkShaderProgram2*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::GetCommunicator() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetComponentIds(int, int) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetNormalizeVectors(int) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetTransformVectors(int) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetNoiseTexParameters(vtkTextureObject*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::SetVectorTexParameters(vtkTextureObject*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::New() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::Execute(vtkTextureObject*, vtkTextureObject*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::Execute(int const*, vtkTextureObject*, vtkTextureObject*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::Execute(vtkPixelExtent const&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&, vtkTextureObject*, vtkTextureObject*, vtkTextureObject*) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC1Ev' type='func-type' binding='global-binding' alias='_ZN28vtkLineIntegralConvolution2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN28vtkLineIntegralConvolution2DC2Ev' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::vtkLineIntegralConvolution2D() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD1Ev' type='func-type' binding='global-binding' alias='_ZN28vtkLineIntegralConvolution2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN28vtkLineIntegralConvolution2DD2Ev' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D::~vtkLineIntegralConvolution2D() -->
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::GetAlgorithm() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12GetAlgorithmEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12GetAlgorithmEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::SetAlgorithm(vtkImageDataLIC2D*) -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12SetAlgorithmEP17vtkImageDataLIC2D' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12SetAlgorithmEP17vtkImageDataLIC2D' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::PieceToExtentThreadSafe(int, int, int, int*, int*, int, int) -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator23PieceToExtentThreadSafeEiiiPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator23PieceToExtentThreadSafeEiiiPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::SetInputExtentTranslator(vtkExtentTranslator*) -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator24SetInputExtentTranslatorEP19vtkExtentTranslator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator24SetInputExtentTranslatorEP19vtkExtentTranslator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::New() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::vtkImageDataLIC2DExtentTranslator() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC1Ev' type='func-type' binding='global-binding' alias='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::vtkImageDataLIC2DExtentTranslator() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::~vtkImageDataLIC2DExtentTranslator() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::~vtkImageDataLIC2DExtentTranslator() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD1Ev' type='func-type' binding='global-binding' alias='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' is-defined='yes'/>
     <!-- vtkImageDataLIC2DExtentTranslator::~vtkImageDataLIC2DExtentTranslator() -->
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __gnu_cxx::new_allocator<vtkPixelExtent>::allocate(unsigned long, void const*) -->
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorI14vtkPixelExtentE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorI14vtkPixelExtentE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>::operator+(long) const -->
-    <elf-symbol name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EplEl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EplEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_initialize_map(unsigned long) -->
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EE17_M_initialize_mapEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EE17_M_initialize_mapEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~_Deque_base() -->
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' is-defined='yes'/>
     <!-- std::_Deque_base<vtkPixelExtent, std::allocator<vtkPixelExtent> >::~_Deque_base() -->
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>::operator+=(long) -->
-    <elf-symbol name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EpLEl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EpLEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_insert_aux<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*>, unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_insert_aux<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_m' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_reallocate_map(unsigned long, bool) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_range_insert_aux<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent const&, vtkPixelExtent const*>, std::forward_iterator_tag) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_range_insert_aux<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::forward_iterator_tag) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_reserve_map_at_back(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_new_elements_at_back(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_new_elements_at_front(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_reserve_elements_at_back(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE27_M_reserve_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE27_M_reserve_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::_M_reserve_elements_at_front(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::deque(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::deque(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC2ERKS2_' type='func-type' binding='weak-binding' alias='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' is-defined='yes'/>
     <!-- std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> >::operator=(std::deque<vtkPixelExtent, std::allocator<vtkPixelExtent> > const&) -->
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEaSERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEaSERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<float, std::allocator<float> >::_M_fill_insert(__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > >, unsigned long, float const&) -->
-    <elf-symbol name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__push_heap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long, long, vtkPixelExtent) -->
-    <elf-symbol name='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__adjust_heap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long, long, vtkPixelExtent) -->
-    <elf-symbol name='_ZSt13__adjust_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__insertion_sort<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
-    <elf-symbol name='_ZSt16__insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__introsort_loop<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, long) -->
-    <elf-symbol name='_ZSt16__introsort_loopISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElEvT_S5_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElEvT_S5_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__unguarded_partition<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent) -->
-    <elf-symbol name='_ZSt21__unguarded_partitionISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_ET_S5_S5_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__unguarded_partitionISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_ET_S5_S5_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__final_insertion_sort<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
-    <elf-symbol name='_ZSt22__final_insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__final_insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::__uninitialized_copy_a<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::allocator<vtkPixelExtent>&) -->
-    <elf-symbol name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- float* std::__uninitialized_move_a<float*, float*, std::allocator<float> >(float*, float*, float*, std::allocator<float>&) -->
-    <elf-symbol name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__unguarded_linear_insert<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent>(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, vtkPixelExtent) -->
-    <elf-symbol name='_ZSt25__unguarded_linear_insertISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_EvT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt25__unguarded_linear_insertISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_EvT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> std::copy<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
-    <elf-symbol name='_ZSt4copyISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_ET0_T_S6_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_ET0_T_S6_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::make_heap<std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*> >(std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>, std::_Deque_iterator<vtkPixelExtent, vtkPixelExtent&, vtkPixelExtent*>) -->
-    <elf-symbol name='_ZSt9make_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt9make_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- typeinfo for vtkImageDataLIC2D -->
-    <elf-symbol name='_ZTI17vtkImageDataLIC2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI17vtkImageDataLIC2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSurfaceLICPainter -->
-    <elf-symbol name='_ZTI20vtkSurfaceLICPainter' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI20vtkSurfaceLICPainter' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkPainterCommunicator -->
-    <elf-symbol name='_ZTI22vtkPainterCommunicator' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkPainterCommunicator' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkStructuredGridLIC2D -->
-    <elf-symbol name='_ZTI22vtkStructuredGridLIC2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkStructuredGridLIC2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSurfaceLICComposite -->
-    <elf-symbol name='_ZTI22vtkSurfaceLICComposite' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkSurfaceLICComposite' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSurfaceLICDefaultPainter -->
-    <elf-symbol name='_ZTI27vtkSurfaceLICDefaultPainter' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI27vtkSurfaceLICDefaultPainter' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkLineIntegralConvolution2D -->
-    <elf-symbol name='_ZTI28vtkLineIntegralConvolution2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI28vtkLineIntegralConvolution2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkImageDataLIC2DExtentTranslator -->
-    <elf-symbol name='_ZTI33vtkImageDataLIC2DExtentTranslator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI33vtkImageDataLIC2DExtentTranslator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkImageDataLIC2D -->
-    <elf-symbol name='_ZTS17vtkImageDataLIC2D' size='20' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS17vtkImageDataLIC2D' size='20' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSurfaceLICPainter -->
-    <elf-symbol name='_ZTS20vtkSurfaceLICPainter' size='23' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS20vtkSurfaceLICPainter' size='23' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkPainterCommunicator -->
-    <elf-symbol name='_ZTS22vtkPainterCommunicator' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkPainterCommunicator' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkStructuredGridLIC2D -->
-    <elf-symbol name='_ZTS22vtkStructuredGridLIC2D' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkStructuredGridLIC2D' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSurfaceLICComposite -->
-    <elf-symbol name='_ZTS22vtkSurfaceLICComposite' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkSurfaceLICComposite' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSurfaceLICDefaultPainter -->
-    <elf-symbol name='_ZTS27vtkSurfaceLICDefaultPainter' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS27vtkSurfaceLICDefaultPainter' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkLineIntegralConvolution2D -->
-    <elf-symbol name='_ZTS28vtkLineIntegralConvolution2D' size='31' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS28vtkLineIntegralConvolution2D' size='31' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkImageDataLIC2DExtentTranslator -->
-    <elf-symbol name='_ZTS33vtkImageDataLIC2DExtentTranslator' size='36' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS33vtkImageDataLIC2DExtentTranslator' size='36' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkImageDataLIC2D -->
-    <elf-symbol name='_ZTV17vtkImageDataLIC2D' size='720' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV17vtkImageDataLIC2D' size='720' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSurfaceLICPainter -->
-    <elf-symbol name='_ZTV20vtkSurfaceLICPainter' size='696' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV20vtkSurfaceLICPainter' size='696' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkPainterCommunicator -->
-    <elf-symbol name='_ZTV22vtkPainterCommunicator' size='104' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkPainterCommunicator' size='104' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkStructuredGridLIC2D -->
-    <elf-symbol name='_ZTV22vtkStructuredGridLIC2D' size='664' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkStructuredGridLIC2D' size='664' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSurfaceLICComposite -->
-    <elf-symbol name='_ZTV22vtkSurfaceLICComposite' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkSurfaceLICComposite' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSurfaceLICDefaultPainter -->
-    <elf-symbol name='_ZTV27vtkSurfaceLICDefaultPainter' size='408' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV27vtkSurfaceLICDefaultPainter' size='408' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkLineIntegralConvolution2D -->
-    <elf-symbol name='_ZTV28vtkLineIntegralConvolution2D' size='600' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV28vtkLineIntegralConvolution2D' size='600' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkImageDataLIC2DExtentTranslator -->
-    <elf-symbol name='_ZTV33vtkImageDataLIC2DExtentTranslator' size='384' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV33vtkImageDataLIC2DExtentTranslator' size='384' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_AAH -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_AAH' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_AAH' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_AAV -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_AAV' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_AAV' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_CE -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_CE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_CE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_EE -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_EE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_EE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_LIC0 -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_LIC0' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LIC0' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_LICI -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_LICI' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LICI' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_LICN -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_LICN' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LICN' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkLineIntegralConvolution2D_VT -->
-    <elf-symbol name='vtkLineIntegralConvolution2D_VT' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_VT' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkStructuredGridLIC2D_fs -->
-    <elf-symbol name='vtkStructuredGridLIC2D_fs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkStructuredGridLIC2D_fs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter_CE -->
-    <elf-symbol name='vtkSurfaceLICPainter_CE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_CE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter_DCpy -->
-    <elf-symbol name='vtkSurfaceLICPainter_DCpy' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_DCpy' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter_GeomFs -->
-    <elf-symbol name='vtkSurfaceLICPainter_GeomFs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_GeomFs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter_GeomVs -->
-    <elf-symbol name='vtkSurfaceLICPainter_GeomVs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_GeomVs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSurfaceLICPainter_SC -->
-    <elf-symbol name='vtkSurfaceLICPainter_SC' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_SC' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkImageDataLIC2D.cxx' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index 9bcdc2818f5ce3bbabd6764853a0c5426e7c11b4..58e5afda923aa57e83726a7fbaae0c342d212378 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- GetHeapProfile -->
-    <elf-symbol name='GetHeapProfile' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='GetHeapProfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfilerDump -->
-    <elf-symbol name='HeapProfilerDump' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerDump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfilerStart -->
-    <elf-symbol name='HeapProfilerStart' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfilerStop -->
-    <elf-symbol name='HeapProfilerStop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerStop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- IsHeapProfilerRunning -->
-    <elf-symbol name='IsHeapProfilerRunning' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='IsHeapProfilerRunning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_GetAllocatedSize -->
-    <elf-symbol name='MallocExtension_GetAllocatedSize' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetAllocatedSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_GetEstimatedAllocatedSize -->
-    <elf-symbol name='MallocExtension_GetEstimatedAllocatedSize' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetEstimatedAllocatedSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_GetNumericProperty -->
-    <elf-symbol name='MallocExtension_GetNumericProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetNumericProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_GetOwnership -->
-    <elf-symbol name='MallocExtension_GetOwnership' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetOwnership' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_GetStats -->
-    <elf-symbol name='MallocExtension_GetStats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_MallocMemoryStats -->
-    <elf-symbol name='MallocExtension_MallocMemoryStats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MallocMemoryStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_MarkThreadBusy -->
-    <elf-symbol name='MallocExtension_MarkThreadBusy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MarkThreadBusy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_MarkThreadIdle -->
-    <elf-symbol name='MallocExtension_MarkThreadIdle' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MarkThreadIdle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_ReleaseFreeMemory -->
-    <elf-symbol name='MallocExtension_ReleaseFreeMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_ReleaseFreeMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_ReleaseToSystem -->
-    <elf-symbol name='MallocExtension_ReleaseToSystem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_ReleaseToSystem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_SetNumericProperty -->
-    <elf-symbol name='MallocExtension_SetNumericProperty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_SetNumericProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_VerifyAllMemory -->
-    <elf-symbol name='MallocExtension_VerifyAllMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyAllMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_VerifyArrayNewMemory -->
-    <elf-symbol name='MallocExtension_VerifyArrayNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyArrayNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_VerifyMallocMemory -->
-    <elf-symbol name='MallocExtension_VerifyMallocMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyMallocMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension_VerifyNewMemory -->
-    <elf-symbol name='MallocExtension_VerifyNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddDeleteHook -->
-    <elf-symbol name='MallocHook_AddDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddMmapHook -->
-    <elf-symbol name='MallocHook_AddMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddMremapHook -->
-    <elf-symbol name='MallocHook_AddMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddMunmapHook -->
-    <elf-symbol name='MallocHook_AddMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddNewHook -->
-    <elf-symbol name='MallocHook_AddNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddPreMmapHook -->
-    <elf-symbol name='MallocHook_AddPreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddPreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddPreSbrkHook -->
-    <elf-symbol name='MallocHook_AddPreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddPreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_AddSbrkHook -->
-    <elf-symbol name='MallocHook_AddSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_GetCallerStackTrace -->
-    <elf-symbol name='MallocHook_GetCallerStackTrace' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_GetCallerStackTrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_InitAtFirstAllocation_HeapLeakChecker -->
-    <elf-symbol name='MallocHook_InitAtFirstAllocation_HeapLeakChecker' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_InitAtFirstAllocation_HeapLeakChecker' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveDeleteHook -->
-    <elf-symbol name='MallocHook_RemoveDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveMmapHook -->
-    <elf-symbol name='MallocHook_RemoveMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveMmapReplacement -->
-    <elf-symbol name='MallocHook_RemoveMmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveMremapHook -->
-    <elf-symbol name='MallocHook_RemoveMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveMunmapHook -->
-    <elf-symbol name='MallocHook_RemoveMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveMunmapReplacement -->
-    <elf-symbol name='MallocHook_RemoveMunmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMunmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveNewHook -->
-    <elf-symbol name='MallocHook_RemoveNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemovePreMmapHook -->
-    <elf-symbol name='MallocHook_RemovePreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemovePreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemovePreSbrkHook -->
-    <elf-symbol name='MallocHook_RemovePreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemovePreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_RemoveSbrkHook -->
-    <elf-symbol name='MallocHook_RemoveSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetDeleteHook -->
-    <elf-symbol name='MallocHook_SetDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetMmapHook -->
-    <elf-symbol name='MallocHook_SetMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetMmapReplacement -->
-    <elf-symbol name='MallocHook_SetMmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetMremapHook -->
-    <elf-symbol name='MallocHook_SetMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetMunmapHook -->
-    <elf-symbol name='MallocHook_SetMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetMunmapReplacement -->
-    <elf-symbol name='MallocHook_SetMunmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMunmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetNewHook -->
-    <elf-symbol name='MallocHook_SetNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetPreMmapHook -->
-    <elf-symbol name='MallocHook_SetPreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetPreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetPreSbrkHook -->
-    <elf-symbol name='MallocHook_SetPreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetPreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook_SetSbrkHook -->
-    <elf-symbol name='MallocHook_SetSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandlerGetState -->
-    <elf-symbol name='ProfileHandlerGetState' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerGetState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandlerRegisterCallback -->
-    <elf-symbol name='ProfileHandlerRegisterCallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerRegisterCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandlerRegisterThread -->
-    <elf-symbol name='ProfileHandlerRegisterThread' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerRegisterThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandlerReset -->
-    <elf-symbol name='ProfileHandlerReset' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerReset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandlerUnregisterCallback -->
-    <elf-symbol name='ProfileHandlerUnregisterCallback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerUnregisterCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerDisable -->
-    <elf-symbol name='ProfilerDisable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerDisable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerEnable -->
-    <elf-symbol name='ProfilerEnable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerEnable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerFlush -->
-    <elf-symbol name='ProfilerFlush' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerFlush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerGetCurrentState -->
-    <elf-symbol name='ProfilerGetCurrentState' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerGetCurrentState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerRegisterThread -->
-    <elf-symbol name='ProfilerRegisterThread' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerRegisterThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerStart -->
-    <elf-symbol name='ProfilerStart' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerStartWithOptions -->
-    <elf-symbol name='ProfilerStartWithOptions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerStartWithOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilerStop -->
-    <elf-symbol name='ProfilerStop' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilerStop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfilingIsEnabledForAllThreads -->
-    <elf-symbol name='ProfilingIsEnabledForAllThreads' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ProfilingIsEnabledForAllThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RunningOnValgrind -->
-    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocGetenvSafe -->
-    <elf-symbol name='TCMallocGetenvSafe' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='TCMallocGetenvSafe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_ListAllProcessThreads -->
-    <elf-symbol name='TCMalloc_ListAllProcessThreads' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_ListAllProcessThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_ResumeAllProcessThreads -->
-    <elf-symbol name='TCMalloc_ResumeAllProcessThreads' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_ResumeAllProcessThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ValgrindSlowdown -->
-    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetStackTrace(void**, int, int) -->
-    <elf-symbol name='_Z13GetStackTracePPvii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13GetStackTracePPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetStackFrames(void**, int*, int, int) -->
-    <elf-symbol name='_Z14GetStackFramesPPvPiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14GetStackFramesPPvPiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CyclesPerSecond() -->
-    <elf-symbol name='_Z15CyclesPerSecondv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15CyclesPerSecondv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HasPosixThreads() -->
-    <elf-symbol name='_Z15HasPosixThreadsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15HasPosixThreadsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetenvBeforeMain(char const*) -->
-    <elf-symbol name='_Z16GetenvBeforeMainPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16GetenvBeforeMainPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RawOpenForWriting(char const*) -->
-    <elf-symbol name='_Z17RawOpenForWritingPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17RawOpenForWritingPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetUniquePathFromEnv(char const*, char*) -->
-    <elf-symbol name='_Z20GetUniquePathFromEnvPKcPc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20GetUniquePathFromEnvPKcPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- InitSystemAllocators() -->
-    <elf-symbol name='_Z20InitSystemAllocatorsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20InitSystemAllocatorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SleepForMilliseconds(int) -->
-    <elf-symbol name='_Z20SleepForMillisecondsi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20SleepForMillisecondsi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_SystemAlloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_Z20TCMalloc_SystemAllocmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20TCMalloc_SystemAllocmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_SystemCommit(void*, unsigned long) -->
-    <elf-symbol name='_Z21TCMalloc_SystemCommitPvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z21TCMalloc_SystemCommitPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_SystemRelease(void*, unsigned long) -->
-    <elf-symbol name='_Z22TCMalloc_SystemReleasePvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22TCMalloc_SystemReleasePvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- perftools_pthread_once(int*, void (*)()) -->
-    <elf-symbol name='_Z22perftools_pthread_oncePiPFvvE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22perftools_pthread_oncePiPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetStackTraceWithContext(void**, int, int, void const*) -->
-    <elf-symbol name='_Z24GetStackTraceWithContextPPviiPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24GetStackTraceWithContextPPviiPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_get_sysalloc_override(SysAllocator*) -->
-    <elf-symbol name='_Z24tc_get_sysalloc_overrideP12SysAllocator' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24tc_get_sysalloc_overrideP12SysAllocator' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GetStackFramesWithContext(void**, int*, int, int, void const*) -->
-    <elf-symbol name='_Z25GetStackFramesWithContextPPvPiiiPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25GetStackFramesWithContextPPvPiiiPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- perftools_pthread_key_create(unsigned int*, void (*)(void*)) -->
-    <elf-symbol name='_Z28perftools_pthread_key_createPjPFvPvE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28perftools_pthread_key_createPjPFvPvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- perftools_pthread_key_delete(unsigned int) -->
-    <elf-symbol name='_Z28perftools_pthread_key_deletej' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28perftools_pthread_key_deletej' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- perftools_pthread_getspecific(unsigned int) -->
-    <elf-symbol name='_Z29perftools_pthread_getspecificj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z29perftools_pthread_getspecificj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- perftools_pthread_setspecific(unsigned int, void*) -->
-    <elf-symbol name='_Z29perftools_pthread_setspecificjPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z29perftools_pthread_setspecificjPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker_RunHeapCleanups() -->
-    <elf-symbol name='_Z31HeapLeakChecker_RunHeapCleanupsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z31HeapLeakChecker_RunHeapCleanupsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker_AfterDestructors() -->
-    <elf-symbol name='_Z32HeapLeakChecker_AfterDestructorsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z32HeapLeakChecker_AfterDestructorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker_InternalInitStart() -->
-    <elf-symbol name='_Z33HeapLeakChecker_InternalInitStartv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z33HeapLeakChecker_InternalInitStartv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker_BeforeConstructors() -->
-    <elf-symbol name='_Z34HeapLeakChecker_BeforeConstructorsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z34HeapLeakChecker_BeforeConstructorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- NumCPUs() -->
-    <elf-symbol name='_Z7NumCPUsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7NumCPUsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RAW_LOG(int, char const*, ...) -->
-    <elf-symbol name='_Z7RAW_LOGiPKcz' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7RAW_LOGiPKcz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RAW_VLOG(int, char const*, ...) -->
-    <elf-symbol name='_Z8RAW_VLOGiPKcz' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8RAW_VLOGiPKcz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RawClose(int) -->
-    <elf-symbol name='_Z8RawClosei' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8RawClosei' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- RawWrite(int, char const*, unsigned long) -->
-    <elf-symbol name='_Z8RawWriteiPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8RawWriteiPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LogPrintf(int, char const*, __va_list_tag*) -->
-    <elf-symbol name='_Z9LogPrintfiPKcP13__va_list_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9LogPrintfiPKcP13__va_list_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AddressMap<HeapProfileTable::AllocValue>::Insert(void const*, HeapProfileTable::AllocValue) -->
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEE6InsertEPKvS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEE6InsertEPKvS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AddressMap<HeapProfileTable::AllocValue>::AddressMap(void* (*)(unsigned long), void (*)(void*)) -->
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- AddressMap<HeapProfileTable::AllocValue>::AddressMap(void* (*)(unsigned long), void (*)(void*)) -->
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC2EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' alias='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC2EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' is-defined='yes'/>
     <!-- MallocHook::UnhookedMMap(void*, unsigned long, int, int, int, long) -->
-    <elf-symbol name='_ZN10MallocHook12UnhookedMMapEPvmiiil' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook12UnhookedMMapEPvmiiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::UnhookedMUnmap(void*, unsigned long) -->
-    <elf-symbol name='_ZN10MallocHook14UnhookedMUnmapEPvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook14UnhookedMUnmapEPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeNewHookSlow(void const*, unsigned long) -->
-    <elf-symbol name='_ZN10MallocHook17InvokeNewHookSlowEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook17InvokeNewHookSlowEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeMmapHookSlow(void const*, void const*, unsigned long, int, int, int, long) -->
-    <elf-symbol name='_ZN10MallocHook18InvokeMmapHookSlowEPKvS1_miiil' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook18InvokeMmapHookSlowEPKvS1_miiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeSbrkHookSlow(void const*, long) -->
-    <elf-symbol name='_ZN10MallocHook18InvokeSbrkHookSlowEPKvl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook18InvokeSbrkHookSlowEPKvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeDeleteHookSlow(void const*) -->
-    <elf-symbol name='_ZN10MallocHook20InvokeDeleteHookSlowEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeDeleteHookSlowEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeMremapHookSlow(void const*, void const*, unsigned long, unsigned long, int, void const*) -->
-    <elf-symbol name='_ZN10MallocHook20InvokeMremapHookSlowEPKvS1_mmiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeMremapHookSlowEPKvS1_mmiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeMunmapHookSlow(void const*, unsigned long) -->
-    <elf-symbol name='_ZN10MallocHook20InvokeMunmapHookSlowEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeMunmapHookSlowEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokePreMmapHookSlow(void const*, unsigned long, int, int, int, long) -->
-    <elf-symbol name='_ZN10MallocHook21InvokePreMmapHookSlowEPKvmiiil' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook21InvokePreMmapHookSlowEPKvmiiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokePreSbrkHookSlow(long) -->
-    <elf-symbol name='_ZN10MallocHook21InvokePreSbrkHookSlowEl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook21InvokePreSbrkHookSlowEl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeMmapReplacementSlow(void const*, unsigned long, int, int, int, long, void**) -->
-    <elf-symbol name='_ZN10MallocHook25InvokeMmapReplacementSlowEPKvmiiilPPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook25InvokeMmapReplacementSlowEPKvmiiilPPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocHook::InvokeMunmapReplacementSlow(void const*, unsigned long, int*) -->
-    <elf-symbol name='_ZN10MallocHook27InvokeMunmapReplacementSlowEPKvmPi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook27InvokeMunmapReplacementSlowEPKvmPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::FlushTable() -->
-    <elf-symbol name='_ZN11CpuProfiler10FlushTableEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler10FlushTableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::prof_handler(int, siginfo*, void*, void*) -->
-    <elf-symbol name='_ZN11CpuProfiler12prof_handlerEiP7siginfoPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler12prof_handlerEiP7siginfoPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::EnableHandler() -->
-    <elf-symbol name='_ZN11CpuProfiler13EnableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler13EnableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::DisableHandler() -->
-    <elf-symbol name='_ZN11CpuProfiler14DisableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler14DisableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::GetCurrentState(ProfilerState*) -->
-    <elf-symbol name='_ZN11CpuProfiler15GetCurrentStateEP13ProfilerState' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler15GetCurrentStateEP13ProfilerState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::Stop() -->
-    <elf-symbol name='_ZN11CpuProfiler4StopEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler4StopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::Start(char const*, ProfilerOptions const*) -->
-    <elf-symbol name='_ZN11CpuProfiler5StartEPKcPK15ProfilerOptions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler5StartEPKcPK15ProfilerOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::Enabled() -->
-    <elf-symbol name='_ZN11CpuProfiler7EnabledEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler7EnabledEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::CpuProfiler() -->
-    <elf-symbol name='_ZN11CpuProfilerC1Ev' type='func-type' binding='global-binding' alias='_ZN11CpuProfilerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11CpuProfilerC2Ev' is-defined='yes'/>
     <!-- CpuProfiler::CpuProfiler() -->
-    <elf-symbol name='_ZN11CpuProfilerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::~CpuProfiler() -->
-    <elf-symbol name='_ZN11CpuProfilerD1Ev' type='func-type' binding='global-binding' alias='_ZN11CpuProfilerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11CpuProfilerD2Ev' is-defined='yes'/>
     <!-- CpuProfiler::~CpuProfiler() -->
-    <elf-symbol name='_ZN11CpuProfilerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapCleaner::RunHeapCleanups() -->
-    <elf-symbol name='_ZN11HeapCleaner15RunHeapCleanupsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleaner15RunHeapCleanupsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapCleaner::HeapCleaner(void (*)()) -->
-    <elf-symbol name='_ZN11HeapCleanerC1EPFvvE' type='func-type' binding='global-binding' alias='_ZN11HeapCleanerC2EPFvvE' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleanerC1EPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11HeapCleanerC2EPFvvE' is-defined='yes'/>
     <!-- HeapCleaner::HeapCleaner(void (*)()) -->
-    <elf-symbol name='_ZN11HeapCleanerC2EPFvvE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleanerC2EPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::FlushTable() -->
-    <elf-symbol name='_ZN11ProfileData10FlushTableEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData10FlushTableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::FlushEvicted() -->
-    <elf-symbol name='_ZN11ProfileData12FlushEvictedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData12FlushEvictedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Add(int, void const* const*) -->
-    <elf-symbol name='_ZN11ProfileData3AddEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData3AddEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Stop() -->
-    <elf-symbol name='_ZN11ProfileData4StopEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData4StopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Evict(ProfileData::Entry const&) -->
-    <elf-symbol name='_ZN11ProfileData5EvictERKNS_5EntryE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5EvictERKNS_5EntryE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Reset() -->
-    <elf-symbol name='_ZN11ProfileData5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Start(char const*, ProfileData::Options const&) -->
-    <elf-symbol name='_ZN11ProfileData5StartEPKcRKNS_7OptionsE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5StartEPKcRKNS_7OptionsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::Options::Options() -->
-    <elf-symbol name='_ZN11ProfileData7OptionsC1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileData7OptionsC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData7OptionsC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileData7OptionsC2Ev' is-defined='yes'/>
     <!-- ProfileData::Options::Options() -->
-    <elf-symbol name='_ZN11ProfileData7OptionsC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData7OptionsC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::ProfileData() -->
-    <elf-symbol name='_ZN11ProfileDataC1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileDataC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileDataC2Ev' is-defined='yes'/>
     <!-- ProfileData::ProfileData() -->
-    <elf-symbol name='_ZN11ProfileDataC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::~ProfileData() -->
-    <elf-symbol name='_ZN11ProfileDataD1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileDataD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileDataD2Ev' is-defined='yes'/>
     <!-- ProfileData::~ProfileData() -->
-    <elf-symbol name='_ZN11ProfileDataD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SymbolTable::Add(void const*) -->
-    <elf-symbol name='_ZN11SymbolTable3AddEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable3AddEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SymbolTable::GetSymbol(void const*) -->
-    <elf-symbol name='_ZN11SymbolTable9GetSymbolEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable9GetSymbolEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SymbolTable::Symbolize() -->
-    <elf-symbol name='_ZN11SymbolTable9SymbolizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable9SymbolizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SysAllocator::~SysAllocator() -->
-    <elf-symbol name='_ZN12SysAllocatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SysAllocator::~SysAllocator() -->
-    <elf-symbol name='_ZN12SysAllocatorD1Ev' type='func-type' binding='global-binding' alias='_ZN12SysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN12SysAllocatorD2Ev' is-defined='yes'/>
     <!-- SysAllocator::~SysAllocator() -->
-    <elf-symbol name='_ZN12SysAllocatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::DeleteArena(LowLevelAlloc::Arena*) -->
-    <elf-symbol name='_ZN13LowLevelAlloc11DeleteArenaEPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc11DeleteArenaEPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::DefaultArena() -->
-    <elf-symbol name='_ZN13LowLevelAlloc12DefaultArenaEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc12DefaultArenaEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::AllocWithArena(unsigned long, LowLevelAlloc::Arena*) -->
-    <elf-symbol name='_ZN13LowLevelAlloc14AllocWithArenaEmPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc14AllocWithArenaEmPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::Free(void*) -->
-    <elf-symbol name='_ZN13LowLevelAlloc4FreeEPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc4FreeEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::Alloc(unsigned long) -->
-    <elf-symbol name='_ZN13LowLevelAlloc5AllocEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc5AllocEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- LowLevelAlloc::NewArena(int, LowLevelAlloc::Arena*) -->
-    <elf-symbol name='_ZN13LowLevelAlloc8NewArenaEiPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc8NewArenaEiPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocGuard::TCMallocGuard() -->
-    <elf-symbol name='_ZN13TCMallocGuardC1Ev' type='func-type' binding='global-binding' alias='_ZN13TCMallocGuardC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN13TCMallocGuardC2Ev' is-defined='yes'/>
     <!-- TCMallocGuard::TCMallocGuard() -->
-    <elf-symbol name='_ZN13TCMallocGuardC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocGuard::~TCMallocGuard() -->
-    <elf-symbol name='_ZN13TCMallocGuardD1Ev' type='func-type' binding='global-binding' alias='_ZN13TCMallocGuardD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN13TCMallocGuardD2Ev' is-defined='yes'/>
     <!-- TCMallocGuard::~TCMallocGuard() -->
-    <elf-symbol name='_ZN13TCMallocGuardD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::StartTimer() -->
-    <elf-symbol name='_ZN14ProfileHandler10StartTimerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler10StartTimerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::EnableHandler() -->
-    <elf-symbol name='_ZN14ProfileHandler13EnableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13EnableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::SignalHandler(int, siginfo*, void*) -->
-    <elf-symbol name='_ZN14ProfileHandler13SignalHandlerEiP7siginfoPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13SignalHandlerEiP7siginfoPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::DisableHandler() -->
-    <elf-symbol name='_ZN14ProfileHandler14DisableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14DisableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::IsTimerRunning() -->
-    <elf-symbol name='_ZN14ProfileHandler14IsTimerRunningEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14IsTimerRunningEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::RegisterThread() -->
-    <elf-symbol name='_ZN14ProfileHandler14RegisterThreadEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14RegisterThreadEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::RegisterCallback(void (*)(int, siginfo*, void*, void*), void*) -->
-    <elf-symbol name='_ZN14ProfileHandler16RegisterCallbackEPFviP7siginfoPvS2_ES2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler16RegisterCallbackEPFviP7siginfoPvS2_ES2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::UnregisterCallback(ProfileHandlerToken*) -->
-    <elf-symbol name='_ZN14ProfileHandler18UnregisterCallbackEP19ProfileHandlerToken' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler18UnregisterCallbackEP19ProfileHandlerToken' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::IsSignalHandlerAvailable() -->
-    <elf-symbol name='_ZN14ProfileHandler24IsSignalHandlerAvailableEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler24IsSignalHandlerAvailableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::Init() -->
-    <elf-symbol name='_ZN14ProfileHandler4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::Reset() -->
-    <elf-symbol name='_ZN14ProfileHandler5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::GetState(ProfileHandlerState*) -->
-    <elf-symbol name='_ZN14ProfileHandler8GetStateEP19ProfileHandlerState' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler8GetStateEP19ProfileHandlerState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::Instance() -->
-    <elf-symbol name='_ZN14ProfileHandler8InstanceEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler8InstanceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::StopTimer() -->
-    <elf-symbol name='_ZN14ProfileHandler9StopTimerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler9StopTimerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::ProfileHandler() -->
-    <elf-symbol name='_ZN14ProfileHandlerC1Ev' type='func-type' binding='global-binding' alias='_ZN14ProfileHandlerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN14ProfileHandlerC2Ev' is-defined='yes'/>
     <!-- ProfileHandler::ProfileHandler() -->
-    <elf-symbol name='_ZN14ProfileHandlerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::~ProfileHandler() -->
-    <elf-symbol name='_ZN14ProfileHandlerD1Ev' type='func-type' binding='global-binding' alias='_ZN14ProfileHandlerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN14ProfileHandlerD2Ev' is-defined='yes'/>
     <!-- ProfileHandler::~ProfileHandler() -->
-    <elf-symbol name='_ZN14ProfileHandlerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLockHolder::SpinLockHolder(SpinLock*) -->
-    <elf-symbol name='_ZN14SpinLockHolderC1EP8SpinLock' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderC1EP8SpinLock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLockHolder::SpinLockHolder(SpinLock*) -->
-    <elf-symbol name='_ZN14SpinLockHolderC2EP8SpinLock' type='func-type' binding='weak-binding' alias='_ZN14SpinLockHolderC1EP8SpinLock' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderC2EP8SpinLock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14SpinLockHolderC1EP8SpinLock' is-defined='yes'/>
     <!-- SpinLockHolder::~SpinLockHolder() -->
-    <elf-symbol name='_ZN14SpinLockHolderD1Ev' type='func-type' binding='weak-binding' alias='_ZN14SpinLockHolderD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14SpinLockHolderD2Ev' is-defined='yes'/>
     <!-- SpinLockHolder::~SpinLockHolder() -->
-    <elf-symbol name='_ZN14SpinLockHolderD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::GlobalChecker() -->
-    <elf-symbol name='_ZN15HeapLeakChecker13GlobalCheckerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker13GlobalCheckerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::NoGlobalLeaks() -->
-    <elf-symbol name='_ZN15HeapLeakChecker13NoGlobalLeaksEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker13NoGlobalLeaksEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DoIgnoreObject(void const*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker14DoIgnoreObjectEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14DoIgnoreObjectEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::GetAllocCaller(void*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker14GetAllocCallerEPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14GetAllocCallerEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::UnIgnoreObject(void const*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker14UnIgnoreObjectEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14UnIgnoreObjectEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DisableChecksIn(char const*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker15DisableChecksInEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker15DisableChecksInEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DoMainHeapCheck() -->
-    <elf-symbol name='_ZN15HeapLeakChecker15DoMainHeapCheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker15DoMainHeapCheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::CancelGlobalCheck() -->
-    <elf-symbol name='_ZN15HeapLeakChecker17CancelGlobalCheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker17CancelGlobalCheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::UseProcMapsLocked(HeapLeakChecker::ProcMapsTask) -->
-    <elf-symbol name='_ZN15HeapLeakChecker17UseProcMapsLockedENS_12ProcMapsTaskE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker17UseProcMapsLockedENS_12ProcMapsTaskE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::TurnItselfOffLocked() -->
-    <elf-symbol name='_ZN15HeapLeakChecker19TurnItselfOffLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker19TurnItselfOffLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::MakeProfileNameLocked() -->
-    <elf-symbol name='_ZN15HeapLeakChecker21MakeProfileNameLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker21MakeProfileNameLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::IgnoreLiveObjectsLocked(char const*, char const*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveObjectsLockedEPKcS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveObjectsLockedEPKcS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::IgnoreLiveThreadsLocked(void*, int, int*, __va_list_tag*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveThreadsLockedEPviPiP13__va_list_tag' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveThreadsLockedEPviPiP13__va_list_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::BeforeConstructorsLocked() -->
-    <elf-symbol name='_ZN15HeapLeakChecker24BeforeConstructorsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker24BeforeConstructorsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DisableChecksFromToLocked(void const*, void const*, int) -->
-    <elf-symbol name='_ZN15HeapLeakChecker25DisableChecksFromToLockedEPKvS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker25DisableChecksFromToLockedEPKvS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DisableLibraryAllocsLocked(char const*, unsigned long, unsigned long) -->
-    <elf-symbol name='_ZN15HeapLeakChecker26DisableLibraryAllocsLockedEPKcmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker26DisableLibraryAllocsLockedEPKcmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::IgnoreAllLiveObjectsLocked(void const*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker26IgnoreAllLiveObjectsLockedEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker26IgnoreAllLiveObjectsLockedEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::NoGlobalLeaksMaybeSymbolize(HeapLeakChecker::ShouldSymbolize) -->
-    <elf-symbol name='_ZN15HeapLeakChecker27NoGlobalLeaksMaybeSymbolizeENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker27NoGlobalLeaksMaybeSymbolizeENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::IgnoreNonThreadLiveObjectsLocked() -->
-    <elf-symbol name='_ZN15HeapLeakChecker32IgnoreNonThreadLiveObjectsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker32IgnoreNonThreadLiveObjectsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Create(char const*, bool) -->
-    <elf-symbol name='_ZN15HeapLeakChecker6CreateEPKcb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker6CreateEPKcb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Disabler::Disabler() -->
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakChecker8DisablerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakChecker8DisablerC2Ev' is-defined='yes'/>
     <!-- HeapLeakChecker::Disabler::Disabler() -->
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Disabler::~Disabler() -->
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakChecker8DisablerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakChecker8DisablerD2Ev' is-defined='yes'/>
     <!-- HeapLeakChecker::Disabler::~Disabler() -->
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::IsActive() -->
-    <elf-symbol name='_ZN15HeapLeakChecker8IsActiveEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8IsActiveEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Allocator::Free(void*) -->
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator4FreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator4FreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Allocator::Allocate(unsigned long) -->
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator8AllocateEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator8AllocateEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::DoNoLeaks(HeapLeakChecker::ShouldSymbolize) -->
-    <elf-symbol name='_ZN15HeapLeakChecker9DoNoLeaksENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9DoNoLeaksENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::HeapLeakChecker(char const*) -->
-    <elf-symbol name='_ZN15HeapLeakCheckerC1EPKc' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC1EPKc' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerC2EPKc' is-defined='yes'/>
     <!-- HeapLeakChecker::HeapLeakChecker() -->
-    <elf-symbol name='_ZN15HeapLeakCheckerC1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerC2Ev' is-defined='yes'/>
     <!-- HeapLeakChecker::HeapLeakChecker(char const*) -->
-    <elf-symbol name='_ZN15HeapLeakCheckerC2EPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC2EPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::HeapLeakChecker() -->
-    <elf-symbol name='_ZN15HeapLeakCheckerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::~HeapLeakChecker() -->
-    <elf-symbol name='_ZN15HeapLeakCheckerD1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerD2Ev' is-defined='yes'/>
     <!-- HeapLeakChecker::~HeapLeakChecker() -->
-    <elf-symbol name='_ZN15HeapLeakCheckerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::Initialize() -->
-    <elf-symbol name='_ZN15MallocExtension10InitializeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension10InitializeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetOwnership(void const*) -->
-    <elf-symbol name='_ZN15MallocExtension12GetOwnershipEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension12GetOwnershipEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetHeapSample(std::string*) -->
-    <elf-symbol name='_ZN15MallocExtension13GetHeapSampleEPSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension13GetHeapSampleEPSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::MarkThreadBusy() -->
-    <elf-symbol name='_ZN15MallocExtension14MarkThreadBusyEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension14MarkThreadBusyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::MarkThreadIdle() -->
-    <elf-symbol name='_ZN15MallocExtension14MarkThreadIdleEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension14MarkThreadIdleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::ReadStackTraces(int*) -->
-    <elf-symbol name='_ZN15MallocExtension15ReadStackTracesEPi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15ReadStackTracesEPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::ReleaseToSystem(unsigned long) -->
-    <elf-symbol name='_ZN15MallocExtension15ReleaseToSystemEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15ReleaseToSystemEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::VerifyAllMemory() -->
-    <elf-symbol name='_ZN15MallocExtension15VerifyAllMemoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15VerifyAllMemoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::VerifyNewMemory(void const*) -->
-    <elf-symbol name='_ZN15MallocExtension15VerifyNewMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15VerifyNewMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetAllocatedSize(void const*) -->
-    <elf-symbol name='_ZN15MallocExtension16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*) -->
-    <elf-symbol name='_ZN15MallocExtension16GetFreeListSizesEPSt6vectorINS_12FreeListInfoESaIS1_EE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension16GetFreeListSizesEPSt6vectorINS_12FreeListInfoESaIS1_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::MallocMemoryStats(int*, unsigned long*, int*) -->
-    <elf-symbol name='_ZN15MallocExtension17MallocMemoryStatsEPiPmS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension17MallocMemoryStatsEPiPmS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::ReleaseFreeMemory() -->
-    <elf-symbol name='_ZN15MallocExtension17ReleaseFreeMemoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension17ReleaseFreeMemoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetNumericProperty(char const*, unsigned long*) -->
-    <elf-symbol name='_ZN15MallocExtension18GetNumericPropertyEPKcPm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18GetNumericPropertyEPKcPm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetSystemAllocator() -->
-    <elf-symbol name='_ZN15MallocExtension18GetSystemAllocatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18GetSystemAllocatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::SetNumericProperty(char const*, unsigned long) -->
-    <elf-symbol name='_ZN15MallocExtension18SetNumericPropertyEPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18SetNumericPropertyEPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::SetSystemAllocator(SysAllocator*) -->
-    <elf-symbol name='_ZN15MallocExtension18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::VerifyMallocMemory(void const*) -->
-    <elf-symbol name='_ZN15MallocExtension18VerifyMallocMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18VerifyMallocMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetHeapGrowthStacks(std::string*) -->
-    <elf-symbol name='_ZN15MallocExtension19GetHeapGrowthStacksEPSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension19GetHeapGrowthStacksEPSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetMemoryReleaseRate() -->
-    <elf-symbol name='_ZN15MallocExtension20GetMemoryReleaseRateEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20GetMemoryReleaseRateEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::SetMemoryReleaseRate(double) -->
-    <elf-symbol name='_ZN15MallocExtension20SetMemoryReleaseRateEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20SetMemoryReleaseRateEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::VerifyArrayNewMemory(void const*) -->
-    <elf-symbol name='_ZN15MallocExtension20VerifyArrayNewMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20VerifyArrayNewMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetEstimatedAllocatedSize(unsigned long) -->
-    <elf-symbol name='_ZN15MallocExtension25GetEstimatedAllocatedSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension25GetEstimatedAllocatedSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::ReadHeapGrowthStackTraces() -->
-    <elf-symbol name='_ZN15MallocExtension25ReadHeapGrowthStackTracesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension25ReadHeapGrowthStackTracesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::Ranges(void*, void (*)(void*, base::MallocRange const*)) -->
-    <elf-symbol name='_ZN15MallocExtension6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::GetStats(char*, int) -->
-    <elf-symbol name='_ZN15MallocExtension8GetStatsEPci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8GetStatsEPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::Register(MallocExtension*) -->
-    <elf-symbol name='_ZN15MallocExtension8RegisterEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8RegisterEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::instance() -->
-    <elf-symbol name='_ZN15MallocExtension8instanceEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8instanceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::~MallocExtension() -->
-    <elf-symbol name='_ZN15MallocExtensionD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MallocExtension::~MallocExtension() -->
-    <elf-symbol name='_ZN15MallocExtensionD1Ev' type='func-type' binding='global-binding' alias='_ZN15MallocExtensionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15MallocExtensionD2Ev' is-defined='yes'/>
     <!-- MallocExtension::~MallocExtension() -->
-    <elf-symbol name='_ZN15MallocExtensionD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::FindRegion(unsigned long, MemoryRegionMap::Region*) -->
-    <elf-symbol name='_ZN15MemoryRegionMap10FindRegionEmPNS_6RegionE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10FindRegionEmPNS_6RegionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::LockIsHeld() -->
-    <elf-symbol name='_ZN15MemoryRegionMap10LockIsHeldEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10LockIsHeldEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::MremapHook(void const*, void const*, unsigned long, unsigned long, int, void const*) -->
-    <elf-symbol name='_ZN15MemoryRegionMap10MremapHookEPKvS1_mmiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10MremapHookEPKvS1_mmiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::MunmapHook(void const*, unsigned long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap10MunmapHookEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10MunmapHookEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::LogAllLocked() -->
-    <elf-symbol name='_ZN15MemoryRegionMap12LogAllLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap12LogAllLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::EndRegionLocked() -->
-    <elf-symbol name='_ZN15MemoryRegionMap15EndRegionLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap15EndRegionLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::BeginRegionLocked() -->
-    <elf-symbol name='_ZN15MemoryRegionMap17BeginRegionLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap17BeginRegionLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::IsRecordingLocked() -->
-    <elf-symbol name='_ZN15MemoryRegionMap17IsRecordingLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap17IsRecordingLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::DoFindRegionLocked(unsigned long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap18DoFindRegionLockedEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap18DoFindRegionLockedEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::InsertRegionLocked(MemoryRegionMap::Region const&) -->
-    <elf-symbol name='_ZN15MemoryRegionMap18InsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap18InsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::RecordRegionRemoval(void const*, unsigned long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap19RecordRegionRemovalEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap19RecordRegionRemovalEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::DoInsertRegionLocked(MemoryRegionMap::Region const&) -->
-    <elf-symbol name='_ZN15MemoryRegionMap20DoInsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20DoInsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::RecordRegionAddition(void const*, unsigned long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap20RecordRegionAdditionEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20RecordRegionAdditionEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::FindAndMarkStackRegion(unsigned long, MemoryRegionMap::Region*) -->
-    <elf-symbol name='_ZN15MemoryRegionMap22FindAndMarkStackRegionEmPNS_6RegionE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap22FindAndMarkStackRegionEmPNS_6RegionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::HandleSavedRegionsLocked(void (*)(MemoryRegionMap::Region const&)) -->
-    <elf-symbol name='_ZN15MemoryRegionMap24HandleSavedRegionsLockedEPFvRKNS_6RegionEE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap24HandleSavedRegionsLockedEPFvRKNS_6RegionEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::RestoreSavedBucketsLocked() -->
-    <elf-symbol name='_ZN15MemoryRegionMap25RestoreSavedBucketsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap25RestoreSavedBucketsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::RecordRegionRemovalInBucket(int, void const* const*, unsigned long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap27RecordRegionRemovalInBucketEiPKPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap27RecordRegionRemovalInBucketEiPKPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::Init(int, bool) -->
-    <elf-symbol name='_ZN15MemoryRegionMap4InitEib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap4InitEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::Lock() -->
-    <elf-symbol name='_ZN15MemoryRegionMap4LockEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap4LockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::Unlock() -->
-    <elf-symbol name='_ZN15MemoryRegionMap6UnlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap6UnlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::MmapHook(void const*, void const*, unsigned long, int, int, int, long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap8MmapHookEPKvS1_miiil' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8MmapHookEPKvS1_miiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::SbrkHook(void const*, long) -->
-    <elf-symbol name='_ZN15MemoryRegionMap8SbrkHookEPKvl' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8SbrkHookEPKvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::Shutdown() -->
-    <elf-symbol name='_ZN15MemoryRegionMap8ShutdownEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8ShutdownEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::GetBucket(int, void const* const*) -->
-    <elf-symbol name='_ZN15MemoryRegionMap9GetBucketEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap9GetBucketEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::MarkAsLive(void const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable10MarkAsLiveEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable10MarkAsLiveEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::RecordFree(void const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable10RecordFreeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable10RecordFreeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::RecordAlloc(void const*, unsigned long, int, void const* const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable11RecordAllocEPKvmiPKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable11RecordAllocEPKvmiPKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::AddIfNonLive(void const*, HeapProfileTable::AllocValue*, HeapProfileTable::AddNonLiveArgs*) -->
-    <elf-symbol name='_ZN16HeapProfileTable12AddIfNonLiveEPKvPNS_10AllocValueEPNS_14AddNonLiveArgsE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12AddIfNonLiveEPKvPNS_10AllocValueEPNS_14AddNonLiveArgsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::TakeSnapshot() -->
-    <elf-symbol name='_ZN16HeapProfileTable12TakeSnapshotEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12TakeSnapshotEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::WriteProfile(char const*, HeapProfileBucket const&, AddressMap<HeapProfileTable::AllocValue>*) -->
-    <elf-symbol name='_ZN16HeapProfileTable12WriteProfileEPKcRK17HeapProfileBucketP10AddressMapINS_10AllocValueEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12WriteProfileEPKcRK17HeapProfileBucketP10AddressMapINS_10AllocValueEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::AddToSnapshot(void const*, HeapProfileTable::AllocValue*, HeapProfileTable::Snapshot*) -->
-    <elf-symbol name='_ZN16HeapProfileTable13AddToSnapshotEPKvPNS_10AllocValueEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13AddToSnapshotEPKvPNS_10AllocValueEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::MarkAsIgnored(void const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable13MarkAsIgnoredEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13MarkAsIgnoredEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::UnparseBucket(HeapProfileBucket const&, char*, int, int, char const*, HeapProfileStats*) -->
-    <elf-symbol name='_ZN16HeapProfileTable13UnparseBucketERK17HeapProfileBucketPciiPKcP16HeapProfileStats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13UnparseBucketERK17HeapProfileBucketPciiPKcP16HeapProfileStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::AllocValueSize(HeapProfileTable::AllocValue const&) -->
-    <elf-symbol name='_ZN16HeapProfileTable14AllocValueSizeERKNS_10AllocValueE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable14AllocValueSizeERKNS_10AllocValueE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::NonLiveSnapshot(HeapProfileTable::Snapshot*) -->
-    <elf-symbol name='_ZN16HeapProfileTable15NonLiveSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable15NonLiveSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::ReleaseSnapshot(HeapProfileTable::Snapshot*) -->
-    <elf-symbol name='_ZN16HeapProfileTable15ReleaseSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable15ReleaseSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::CleanupOldProfiles(char const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable18CleanupOldProfilesEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable18CleanupOldProfilesEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::DumpBucketIterator(HeapProfileBucket const*, HeapProfileTable::BufferArgs*) -->
-    <elf-symbol name='_ZN16HeapProfileTable18DumpBucketIteratorEPK17HeapProfileBucketPNS_10BufferArgsE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable18DumpBucketIteratorEPK17HeapProfileBucketPNS_10BufferArgsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::DumpNonLiveIterator(void const*, HeapProfileTable::AllocValue*, HeapProfileTable::DumpArgs const&) -->
-    <elf-symbol name='_ZN16HeapProfileTable19DumpNonLiveIteratorEPKvPNS_10AllocValueERKNS_8DumpArgsE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable19DumpNonLiveIteratorEPKvPNS_10AllocValueERKNS_8DumpArgsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::GetCallerStackTrace(int, void**) -->
-    <elf-symbol name='_ZN16HeapProfileTable19GetCallerStackTraceEiPPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable19GetCallerStackTraceEiPPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::MapArgsAllocIterator(void const*, HeapProfileTable::AllocValue*, void (*)(void const*, HeapProfileTable::AllocInfo const&)) -->
-    <elf-symbol name='_ZN16HeapProfileTable20MapArgsAllocIteratorEPKvPNS_10AllocValueEPFvS1_RKNS_9AllocInfoEE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable20MapArgsAllocIteratorEPKvPNS_10AllocValueEPFvS1_RKNS_9AllocInfoEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::Snapshot::ReportLeaks(char const*, char const*, bool) -->
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot11ReportLeaksEPKcS2_b' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot11ReportLeaksEPKcS2_b' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::Snapshot::ReportObject(void const*, HeapProfileTable::AllocValue*, char*) -->
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot12ReportObjectEPKvPNS_10AllocValueEPc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot12ReportObjectEPKvPNS_10AllocValueEPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::Snapshot::ReportCallback(void const*, HeapProfileTable::AllocValue*, HeapProfileTable::Snapshot::ReportState*) -->
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot14ReportCallbackEPKvPNS_10AllocValueEPNS0_11ReportStateE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot14ReportCallbackEPKvPNS_10AllocValueEPNS0_11ReportStateE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::Snapshot::ReportIndividualObjects() -->
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot23ReportIndividualObjectsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot23ReportIndividualObjectsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::GetBucket(int, void const* const*) -->
-    <elf-symbol name='_ZN16HeapProfileTable9GetBucketEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable9GetBucketEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::HeapProfileTable(void* (*)(unsigned long), void (*)(void*), bool) -->
-    <elf-symbol name='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::HeapProfileTable(void* (*)(unsigned long), void (*)(void*), bool) -->
-    <elf-symbol name='_ZN16HeapProfileTableC2EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' alias='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableC2EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' is-defined='yes'/>
     <!-- HeapProfileTable::~HeapProfileTable() -->
-    <elf-symbol name='_ZN16HeapProfileTableD1Ev' type='func-type' binding='global-binding' alias='_ZN16HeapProfileTableD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16HeapProfileTableD2Ev' is-defined='yes'/>
     <!-- HeapProfileTable::~HeapProfileTable() -->
-    <elf-symbol name='_ZN16HeapProfileTableD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MmapSysAllocator::Alloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN16MmapSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MmapSysAllocator::~MmapSysAllocator() -->
-    <elf-symbol name='_ZN16MmapSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MmapSysAllocator::~MmapSysAllocator() -->
-    <elf-symbol name='_ZN16MmapSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN16MmapSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MmapSysAllocatorD2Ev' is-defined='yes'/>
     <!-- MmapSysAllocator::~MmapSysAllocator() -->
-    <elf-symbol name='_ZN16MmapSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::FormatLine(char*, int, unsigned long, unsigned long, char const*, unsigned long, long, char const*, unsigned long) -->
-    <elf-symbol name='_ZN16ProcMapsIterator10FormatLineEPcimmPKcmlS2_m' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator10FormatLineEPcimmPKcmlS2_m' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::Init(int, ProcMapsIterator::Buffer*, bool) -->
-    <elf-symbol name='_ZN16ProcMapsIterator4InitEiPNS_6BufferEb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator4InitEiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::Next(unsigned long*, unsigned long*, char**, unsigned long*, long*, char**) -->
-    <elf-symbol name='_ZN16ProcMapsIterator4NextEPmS0_PPcS0_PlS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator4NextEPmS0_PPcS0_PlS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::NextExt(unsigned long*, unsigned long*, char**, unsigned long*, long*, char**, unsigned long*, unsigned long*, unsigned long*, unsigned long*, unsigned long*) -->
-    <elf-symbol name='_ZN16ProcMapsIterator7NextExtEPmS0_PPcS0_PlS2_S0_S0_S0_S0_S0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator7NextExtEPmS0_PPcS0_PlS2_S0_S0_S0_S0_S0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC1Ei' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC2Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1Ei' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC2Ei' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int, ProcMapsIterator::Buffer*) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int, ProcMapsIterator::Buffer*, bool) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferEb' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC2Ei' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2Ei' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int, ProcMapsIterator::Buffer*) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferE' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' is-defined='yes'/>
     <!-- ProcMapsIterator::ProcMapsIterator(int, ProcMapsIterator::Buffer*, bool) -->
-    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::~ProcMapsIterator() -->
-    <elf-symbol name='_ZN16ProcMapsIteratorD1Ev' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorD2Ev' is-defined='yes'/>
     <!-- ProcMapsIterator::~ProcMapsIterator() -->
-    <elf-symbol name='_ZN16ProcMapsIteratorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SbrkSysAllocator::Alloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN16SbrkSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SbrkSysAllocator::~SbrkSysAllocator() -->
-    <elf-symbol name='_ZN16SbrkSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SbrkSysAllocator::~SbrkSysAllocator() -->
-    <elf-symbol name='_ZN16SbrkSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN16SbrkSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16SbrkSysAllocatorD2Ev' is-defined='yes'/>
     <!-- SbrkSysAllocator::~SbrkSysAllocator() -->
-    <elf-symbol name='_ZN16SbrkSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMalloc_Printer::printf(char const*, ...) -->
-    <elf-symbol name='_ZN16TCMalloc_Printer6printfEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16TCMalloc_Printer6printfEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GoogleInitializer::~GoogleInitializer() -->
-    <elf-symbol name='_ZN17GoogleInitializerD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN17GoogleInitializerD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- GoogleInitializer::~GoogleInitializer() -->
-    <elf-symbol name='_ZN17GoogleInitializerD2Ev' type='func-type' binding='weak-binding' alias='_ZN17GoogleInitializerD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17GoogleInitializerD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17GoogleInitializerD1Ev' is-defined='yes'/>
     <!-- DevMemSysAllocator::Alloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN18DevMemSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- DevMemSysAllocator::~DevMemSysAllocator() -->
-    <elf-symbol name='_ZN18DevMemSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- DevMemSysAllocator::~DevMemSysAllocator() -->
-    <elf-symbol name='_ZN18DevMemSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN18DevMemSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN18DevMemSysAllocatorD2Ev' is-defined='yes'/>
     <!-- DevMemSysAllocator::~DevMemSysAllocator() -->
-    <elf-symbol name='_ZN18DevMemSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- DefaultSysAllocator::Alloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN19DefaultSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- DefaultSysAllocator::~DefaultSysAllocator() -->
-    <elf-symbol name='_ZN19DefaultSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- DefaultSysAllocator::~DefaultSysAllocator() -->
-    <elf-symbol name='_ZN19DefaultSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN19DefaultSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN19DefaultSysAllocatorD2Ev' is-defined='yes'/>
     <!-- DefaultSysAllocator::~DefaultSysAllocator() -->
-    <elf-symbol name='_ZN19DefaultSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HugetlbSysAllocator::Initialize() -->
-    <elf-symbol name='_ZN19HugetlbSysAllocator10InitializeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator10InitializeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HugetlbSysAllocator::AllocInternal(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN19HugetlbSysAllocator13AllocInternalEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator13AllocInternalEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HugetlbSysAllocator::Alloc(unsigned long, unsigned long*, unsigned long) -->
-    <elf-symbol name='_ZN19HugetlbSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HugetlbSysAllocator::~HugetlbSysAllocator() -->
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HugetlbSysAllocator::~HugetlbSysAllocator() -->
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN19HugetlbSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN19HugetlbSysAllocatorD2Ev' is-defined='yes'/>
     <!-- HugetlbSysAllocator::~HugetlbSysAllocator() -->
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileEndWriter::~HeapProfileEndWriter() -->
-    <elf-symbol name='_ZN20HeapProfileEndWriterD1Ev' type='func-type' binding='weak-binding' alias='_ZN20HeapProfileEndWriterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20HeapProfileEndWriterD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN20HeapProfileEndWriterD2Ev' is-defined='yes'/>
     <!-- HeapProfileEndWriter::~HeapProfileEndWriter() -->
-    <elf-symbol name='_ZN20HeapProfileEndWriterD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20HeapProfileEndWriterD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetOwnership(void const*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation12GetOwnershipEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation12GetOwnershipEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetHeapSample(std::string*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation13GetHeapSampleEPSs' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation13GetHeapSampleEPSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::MarkThreadBusy() -->
-    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadBusyEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadBusyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::MarkThreadIdle() -->
-    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadIdleEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadIdleEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::ReadStackTraces(int*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation15ReadStackTracesEPi' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation15ReadStackTracesEPi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::ReleaseToSystem(unsigned long) -->
-    <elf-symbol name='_ZN22TCMallocImplementation15ReleaseToSystemEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation15ReleaseToSystemEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetAllocatedSize(void const*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetNumericProperty(char const*, unsigned long*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation18GetNumericPropertyEPKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18GetNumericPropertyEPKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetSystemAllocator() -->
-    <elf-symbol name='_ZN22TCMallocImplementation18GetSystemAllocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18GetSystemAllocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::SetNumericProperty(char const*, unsigned long) -->
-    <elf-symbol name='_ZN22TCMallocImplementation18SetNumericPropertyEPKcm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18SetNumericPropertyEPKcm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::SetSystemAllocator(SysAllocator*) -->
-    <elf-symbol name='_ZN22TCMallocImplementation18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetMemoryReleaseRate() -->
-    <elf-symbol name='_ZN22TCMallocImplementation20GetMemoryReleaseRateEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation20GetMemoryReleaseRateEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::SetMemoryReleaseRate(double) -->
-    <elf-symbol name='_ZN22TCMallocImplementation20SetMemoryReleaseRateEd' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation20SetMemoryReleaseRateEd' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetEstimatedAllocatedSize(unsigned long) -->
-    <elf-symbol name='_ZN22TCMallocImplementation25GetEstimatedAllocatedSizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation25GetEstimatedAllocatedSizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::ReadHeapGrowthStackTraces() -->
-    <elf-symbol name='_ZN22TCMallocImplementation25ReadHeapGrowthStackTracesEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation25ReadHeapGrowthStackTracesEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::Ranges(void*, void (*)(void*, base::MallocRange const*)) -->
-    <elf-symbol name='_ZN22TCMallocImplementation6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetStats(char*, int) -->
-    <elf-symbol name='_ZN22TCMallocImplementation8GetStatsEPci' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation8GetStatsEPci' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::~TCMallocImplementation() -->
-    <elf-symbol name='_ZN22TCMallocImplementationD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::~TCMallocImplementation() -->
-    <elf-symbol name='_ZN22TCMallocImplementationD1Ev' type='func-type' binding='weak-binding' alias='_ZN22TCMallocImplementationD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN22TCMallocImplementationD2Ev' is-defined='yes'/>
     <!-- TCMallocImplementation::~TCMallocImplementation() -->
-    <elf-symbol name='_ZN22TCMallocImplementationD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakCheckerGlobalPrePost::~HeapLeakCheckerGlobalPrePost() -->
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD1Ev' type='func-type' binding='weak-binding' alias='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' is-defined='yes'/>
     <!-- HeapLeakCheckerGlobalPrePost::~HeapLeakCheckerGlobalPrePost() -->
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::RawPrinter::Printf(char const*, ...) -->
-    <elf-symbol name='_ZN4base10RawPrinter6PrintfEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinter6PrintfEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::RawPrinter::RawPrinter(char*, int) -->
-    <elf-symbol name='_ZN4base10RawPrinterC1EPci' type='func-type' binding='global-binding' alias='_ZN4base10RawPrinterC2EPci' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinterC1EPci' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base10RawPrinterC2EPci' is-defined='yes'/>
     <!-- base::RawPrinter::RawPrinter(char*, int) -->
-    <elf-symbol name='_ZN4base10RawPrinterC2EPci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinterC2EPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::Update(int) -->
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIterator6UpdateEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIterator6UpdateEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::SymbolIterator(void const*, int) -->
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::SymbolIterator(void const*, int) -->
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC2EPKvi' type='func-type' binding='global-binding' alias='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC2EPKvi' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::operator++() -->
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorppEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorppEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::Init(void const*) -->
-    <elf-symbol name='_ZN4base11ElfMemImage4InitEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage4InitEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::ElfMemImage(void const*) -->
-    <elf-symbol name='_ZN4base11ElfMemImageC1EPKv' type='func-type' binding='global-binding' alias='_ZN4base11ElfMemImageC2EPKv' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImageC1EPKv' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11ElfMemImageC2EPKv' is-defined='yes'/>
     <!-- base::ElfMemImage::ElfMemImage(void const*) -->
-    <elf-symbol name='_ZN4base11ElfMemImageC2EPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImageC2EPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::Init() -->
-    <elf-symbol name='_ZN4base11VDSOSupport4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::SetBase(void const*) -->
-    <elf-symbol name='_ZN4base11VDSOSupport7SetBaseEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport7SetBaseEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::VDSOSupport() -->
-    <elf-symbol name='_ZN4base11VDSOSupportC1Ev' type='func-type' binding='global-binding' alias='_ZN4base11VDSOSupportC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupportC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11VDSOSupportC2Ev' is-defined='yes'/>
     <!-- base::VDSOSupport::VDSOSupport() -->
-    <elf-symbol name='_ZN4base11VDSOSupportC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupportC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::SubmitSpinLockProfileData(void const*, long) -->
-    <elf-symbol name='_ZN4base25SubmitSpinLockProfileDataEPKvl' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base25SubmitSpinLockProfileDataEPKvl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::SpinLockWait(int volatile*, int, base::internal::SpinLockWaitTransition const*) -->
-    <elf-symbol name='_ZN4base8internal12SpinLockWaitEPViiPKNS0_22SpinLockWaitTransitionE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal12SpinLockWaitEPViiPKNS0_22SpinLockWaitTransitionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::SpinLockWake(int volatile*, bool) -->
-    <elf-symbol name='_ZN4base8internal12SpinLockWakeEPVib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal12SpinLockWakeEPVib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::SpinLockDelay(int volatile*, int, int) -->
-    <elf-symbol name='_ZN4base8internal13SpinLockDelayEPViii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal13SpinLockDelayEPViii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::ExchangeSingular(void (*)(void const*, unsigned long)) -->
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE16ExchangeSingularES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE16ExchangeSingularES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::FixupPrivEndLocked() -->
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE18FixupPrivEndLockedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE18FixupPrivEndLockedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::Add(void (*)(void const*, unsigned long)) -->
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE3AddES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE3AddES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::Remove(void (*)(void const*, unsigned long)) -->
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE6RemoveES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE6RemoveES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLock::SlowUnlock(unsigned long) -->
-    <elf-symbol name='_ZN8SpinLock10SlowUnlockEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock10SlowUnlockEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLock::SlowLock() -->
-    <elf-symbol name='_ZN8SpinLock8SlowLockEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock8SlowLockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLock::SpinLoop(long, int*) -->
-    <elf-symbol name='_ZN8SpinLock8SpinLoopElPi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock8SpinLoopElPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DLL_Length(tcmalloc::Span const*) -->
-    <elf-symbol name='_ZN8tcmalloc10DLL_LengthEPKNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DLL_LengthEPKNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DLL_Remove(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc10DLL_RemoveEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DLL_RemoveEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DeleteSpan(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc10DeleteSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DeleteSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DLL_Prepend(tcmalloc::Span*, tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc11DLL_PrependEPNS_4SpanES1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11DLL_PrependEPNS_4SpanES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::BecomeIdle() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache10BecomeIdleEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache10BecomeIdleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::InitModule() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache10InitModuleEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache10InitModuleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::DeleteCache(tcmalloc::ThreadCache*) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11DeleteCacheEPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11DeleteCacheEPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::ListTooLong(tcmalloc::ThreadCache::FreeList*, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::GetThreadStats(unsigned long*, unsigned long*) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache14GetThreadStatsEPmS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache14GetThreadStatsEPmS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::GetSamplePeriod() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache15GetSamplePeriodEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache15GetSamplePeriodEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::DestroyThreadCache(void*) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18DestroyThreadCacheEPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18DestroyThreadCacheEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::IncreaseCacheLimit() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18IncreaseCacheLimitEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18IncreaseCacheLimitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::FetchFromCentralCache(unsigned long, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache21FetchFromCentralCacheEmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache21FetchFromCentralCacheEmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::ReleaseToCentralCache(tcmalloc::ThreadCache::FreeList*, unsigned long, int) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEmi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::CreateCacheIfNecessary() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22CreateCacheIfNecessaryEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22CreateCacheIfNecessaryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::IncreaseCacheLimitLocked() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache24IncreaseCacheLimitLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache24IncreaseCacheLimitLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::RecomputePerThreadCacheSize() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache27RecomputePerThreadCacheSizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache27RecomputePerThreadCacheSizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::set_overall_thread_cache_size(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache29set_overall_thread_cache_sizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache29set_overall_thread_cache_sizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::Init(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache4InitEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache4InitEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::Cleanup() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7CleanupEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7CleanupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::InitTSD() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7InitTSDEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7InitTSDEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::NewHeap(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7NewHeapEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7NewHeapEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::GetCache() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache8GetCacheEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache8GetCacheEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::Scavenge() -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache8ScavengeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache8ScavengeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::MetaDataAlloc(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc13MetaDataAllocEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc13MetaDataAllocEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::InsertRange(void*, void*, int) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11InsertRangeEPvS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11InsertRangeEPvS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::RemoveRange(void**, void**, int) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11RemoveRangeEPPvS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11RemoveRangeEPPvS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::ShrinkCache(int, bool) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11ShrinkCacheEib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11ShrinkCacheEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::OverheadBytes() -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList13OverheadBytesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList13OverheadBytesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::MakeCacheSpace() -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14MakeCacheSpaceEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14MakeCacheSpaceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::ReleaseToSpans(void*) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14ReleaseToSpansEPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14ReleaseToSpansEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::FetchFromOneSpans(int, void**, void**) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList17FetchFromOneSpansEiPPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList17FetchFromOneSpansEiPPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::ReleaseListToSpans(void*) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList18ReleaseListToSpansEPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList18ReleaseListToSpansEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::EvictRandomSizeClass(int, bool) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList20EvictRandomSizeClassEib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList20EvictRandomSizeClassEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::FetchFromOneSpansSafe(int, void**, void**) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList21FetchFromOneSpansSafeEiPPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList21FetchFromOneSpansSafeEiPPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::Init(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList4InitEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList4InitEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::Populate() -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList8PopulateEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList8PopulateEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::CentralFreeList::tc_length() -->
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList9tc_lengthEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList9tc_lengthEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::ReadStackTracesAndClear() -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTable23ReadStackTracesAndClearEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTable23ReadStackTracesAndClearEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::AddTrace(tcmalloc::StackTrace const&) -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTable8AddTraceERKNS_10StackTraceE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTable8AddTraceERKNS_10StackTraceE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::StackTraceTable() -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::StackTraceTable() -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC2Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc15StackTraceTableC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc15StackTraceTableC1Ev' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::~StackTraceTable() -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::~StackTraceTable() -->
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD2Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc15StackTraceTableD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc15StackTraceTableD1Ev' is-defined='yes'/>
     <!-- tcmalloc::AlignmentForSize(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc16AlignmentForSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16AlignmentForSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DumpProcSelfMaps(int) -->
-    <elf-symbol name='_ZN8tcmalloc16DumpProcSelfMapsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16DumpProcSelfMapsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::FillProcSelfMaps(char*, int, bool*) -->
-    <elf-symbol name='_ZN8tcmalloc16FillProcSelfMapsEPciPb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16FillProcSelfMapsEPciPb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::commandlineflags::StringToBool(char const*, bool) -->
-    <elf-symbol name='_ZN8tcmalloc16commandlineflags12StringToBoolEPKcb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16commandlineflags12StringToBoolEPKcb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::metadata_system_bytes() -->
-    <elf-symbol name='_ZN8tcmalloc21metadata_system_bytesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc21metadata_system_bytesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Log(tcmalloc::LogMode, char const*, int, tcmalloc::LogItem, tcmalloc::LogItem, tcmalloc::LogItem, tcmalloc::LogItem) -->
-    <elf-symbol name='_ZN8tcmalloc3LogENS_7LogModeEPKciNS_7LogItemES3_S3_S3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc3LogENS_7LogModeEPKciNS_7LogItemES3_S3_S3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Logger::Add(tcmalloc::LogItem const&) -->
-    <elf-symbol name='_ZN8tcmalloc6Logger3AddERKNS_7LogItemE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger3AddERKNS_7LogItemE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Logger::AddNum(unsigned long, int) -->
-    <elf-symbol name='_ZN8tcmalloc6Logger6AddNumEmi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger6AddNumEmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Logger::AddStr(char const*, int) -->
-    <elf-symbol name='_ZN8tcmalloc6Logger6AddStrEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger6AddStrEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::InitStaticVars() -->
-    <elf-symbol name='_ZN8tcmalloc6Static14InitStaticVarsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14InitStaticVarsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::NewSpan(unsigned long, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc7NewSpanEmm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7NewSpanEmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::InitStatics() -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler11InitStaticsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler11InitStaticsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::GetSamplePeriod() -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler15GetSamplePeriodEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler15GetSamplePeriodEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::PickNextSamplingPoint() -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler21PickNextSamplingPointEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler21PickNextSamplingPointEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::PopulateFastLog2Table() -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler21PopulateFastLog2TableEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler21PopulateFastLog2TableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::Init(unsigned int) -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler4InitEj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler4InitEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::SizeMap::NumMoveSize(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc7SizeMap11NumMoveSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7SizeMap11NumMoveSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::SizeMap::Init() -->
-    <elf-symbol name='_ZN8tcmalloc7SizeMap4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7SizeMap4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::DLL_Init(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8DLL_InitEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8DLL_InitEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::AllocLarge(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap10AllocLargeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap10AllocLargeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::CommitSpan(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap10CommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap10CommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::EnsureLimit(unsigned long, bool) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap11EnsureLimitEmb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap11EnsureLimitEmb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::DecommitSpan(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap12DecommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap12DecommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::GetNextRange(unsigned long, base::MallocRange*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap12GetNextRangeEmPN4base11MallocRangeE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap12GetNextRangeEmPN4base11MallocRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::MayMergeSpans(tcmalloc::Span*, tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap13MayMergeSpansEPNS_4SpanES2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap13MayMergeSpansEPNS_4SpanES2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::CheckExpensive() -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap14CheckExpensiveEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap14CheckExpensiveEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::GetLargeSpanStats(tcmalloc::PageHeap::LargeSpanStats*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetLargeSpanStatsEPNS0_14LargeSpanStatsE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetLargeSpanStatsEPNS0_14LargeSpanStatsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::GetSmallSpanStats(tcmalloc::PageHeap::SmallSpanStats*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetSmallSpanStatsEPNS0_14SmallSpanStatsE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetSmallSpanStatsEPNS0_14SmallSpanStatsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::MergeIntoFreeList(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17MergeIntoFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17MergeIntoFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::PrependToFreeList(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17PrependToFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17PrependToFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::RegisterSizeClass(tcmalloc::Span*, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17RegisterSizeClassEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17RegisterSizeClassEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::RemoveFromFreeList(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap18RemoveFromFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap18RemoveFromFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::IncrementalScavenge(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap19IncrementalScavengeEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap19IncrementalScavengeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::ReleaseAtLeastNPages(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap20ReleaseAtLeastNPagesEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap20ReleaseAtLeastNPagesEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::ReleaseLastNormalSpan(tcmalloc::PageHeap::SpanList*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap21ReleaseLastNormalSpanEPNS0_8SpanListE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap21ReleaseLastNormalSpanEPNS0_8SpanListE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::SearchFreeAndLargeLists(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap23SearchFreeAndLargeListsEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap23SearchFreeAndLargeListsEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::New(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap3NewEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap3NewEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::Carve(tcmalloc::Span*, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5CarveEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5CarveEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::Check() -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5CheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5CheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::Split(tcmalloc::Span*, unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5SplitEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5SplitEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::Delete(tcmalloc::Span*) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap6DeleteEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap6DeleteEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::GrowHeap(unsigned long) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap8GrowHeapEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap8GrowHeapEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::CheckList(tcmalloc::Span*, unsigned long, unsigned long, int) -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeap9CheckListEPNS_4SpanEmmi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap9CheckListEPNS_4SpanEmmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::PageHeap() -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeapC1Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc8PageHeapC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeapC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc8PageHeapC2Ev' is-defined='yes'/>
     <!-- tcmalloc::PageHeap::PageHeap() -->
-    <elf-symbol name='_ZN8tcmalloc8PageHeapC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeapC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::GetCurrentState(ProfileData::State*) const -->
-    <elf-symbol name='_ZNK11ProfileData15GetCurrentStateEPNS_5StateE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK11ProfileData15GetCurrentStateEPNS_5StateE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::BytesLeaked() const -->
-    <elf-symbol name='_ZNK15HeapLeakChecker11BytesLeakedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK15HeapLeakChecker11BytesLeakedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::ObjectsLeaked() const -->
-    <elf-symbol name='_ZNK15HeapLeakChecker13ObjectsLeakedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK15HeapLeakChecker13ObjectsLeakedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::FindInsideAlloc(void const*, unsigned long, void const**, unsigned long*) const -->
-    <elf-symbol name='_ZNK16HeapProfileTable15FindInsideAllocEPKvmPS1_Pm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable15FindInsideAllocEPKvmPS1_Pm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::FindAllocDetails(void const*, HeapProfileTable::AllocInfo*) const -->
-    <elf-symbol name='_ZNK16HeapProfileTable16FindAllocDetailsEPKvPNS_9AllocInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable16FindAllocDetailsEPKvPNS_9AllocInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::FillOrderedProfile(char*, int) const -->
-    <elf-symbol name='_ZNK16HeapProfileTable18FillOrderedProfileEPci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable18FillOrderedProfileEPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::MakeSortedBucketList() const -->
-    <elf-symbol name='_ZNK16HeapProfileTable20MakeSortedBucketListEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable20MakeSortedBucketListEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::IterateOrderedAllocContexts(void (*)(HeapProfileTable::AllocContextInfo const&)) const -->
-    <elf-symbol name='_ZNK16HeapProfileTable27IterateOrderedAllocContextsEPFvRKNS_16AllocContextInfoEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable27IterateOrderedAllocContextsEPFvRKNS_16AllocContextInfoEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::FindAlloc(void const*, unsigned long*) const -->
-    <elf-symbol name='_ZNK16HeapProfileTable9FindAllocEPKvPm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable9FindAllocEPKvPm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProcMapsIterator::Valid() const -->
-    <elf-symbol name='_ZNK16ProcMapsIterator5ValidEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK16ProcMapsIterator5ValidEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetSymAddr(Elf64_Sym const*) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage10GetSymAddrEPK9Elf64_Sym' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage10GetSymAddrEPK9Elf64_Sym' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetVerdefAux(Elf64_Verdef const*) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage12GetVerdefAuxEPK12Elf64_Verdef' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage12GetVerdefAuxEPK12Elf64_Verdef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::LookupSymbol(char const*, char const*, int, base::ElfMemImage::SymbolInfo*) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetNumSymbols() const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage13GetNumSymbolsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage13GetNumSymbolsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::operator*() const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratordeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratordeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::operator==(base::ElfMemImage::SymbolIterator const&) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratoreqERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratoreqERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::operator!=(base::ElfMemImage::SymbolIterator const&) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorneERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorneERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::SymbolIterator::operator&#45;>() const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorptEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorptEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::LookupSymbolByAddress(void const*, base::ElfMemImage::SymbolInfo*) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage21LookupSymbolByAddressEPKvPNS0_10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage21LookupSymbolByAddressEPKvPNS0_10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::end() const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage3endEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage3endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::begin() const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage5beginEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage5beginEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetPhdr(int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage7GetPhdrEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage7GetPhdrEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetDynstr(unsigned int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynstrEj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynstrEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetDynsym(int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynsymEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynsymEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetVerdef(int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerdefEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerdefEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetVerstr(unsigned int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerstrEj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerstrEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::GetVersym(int) const -->
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVersymEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVersymEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::LookupSymbol(char const*, char const*, int, base::ElfMemImage::SymbolInfo*) const -->
-    <elf-symbol name='_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::LookupSymbolByAddress(void const*, base::ElfMemImage::SymbolInfo*) const -->
-    <elf-symbol name='_ZNK4base11VDSOSupport21LookupSymbolByAddressEPKvPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11VDSOSupport21LookupSymbolByAddressEPKvPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::GetSingular() const -->
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE11GetSingularEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE11GetSingularEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::empty() const -->
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::internal::HookList<void (*)(void const*, unsigned long)>::Traverse(void (**)(void const*, unsigned long), int) const -->
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE8TraverseEPS5_i' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE8TraverseEPS5_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::StackTraceTable::Bucket::KeyEqual(unsigned long, tcmalloc::StackTrace const&) const -->
-    <elf-symbol name='_ZNK8tcmalloc15StackTraceTable6Bucket8KeyEqualEmRKNS_10StackTraceE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK8tcmalloc15StackTraceTable6Bucket8KeyEqualEmRKNS_10StackTraceE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::_Rep::_M_destroy(STL_Allocator<char, HeapLeakChecker::Allocator> const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep10_M_destroyERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep10_M_destroyERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::_Rep::_S_create(unsigned long, unsigned long, STL_Allocator<char, HeapLeakChecker::Allocator> const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep9_S_createEmmRKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep9_S_createEmmRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::basic_string(char const*, STL_Allocator<char, HeapLeakChecker::Allocator> const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::basic_string(std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1ERKS5_' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::basic_string(char const*, STL_Allocator<char, HeapLeakChecker::Allocator> const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2EPKcRKS4_' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2EPKcRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::basic_string(std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const&) -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::~basic_string() -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::~basic_string() -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> >::_M_insert_aux(__gnu_cxx::__normal_iterator<AllocObject*, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, AllocObject const&) -->
-    <elf-symbol name='_ZNSt6vectorI11AllocObject13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorI11AllocObject13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >::_M_insert_aux(__gnu_cxx::__normal_iterator<MallocExtension::FreeListInfo*, std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> > >, MallocExtension::FreeListInfo const&) -->
-    <elf-symbol name='_ZNSt6vectorIN15MallocExtension12FreeListInfoESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN15MallocExtension12FreeListInfoESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<void (*)(), std::allocator<void (*)()> >::_M_insert_aux(__gnu_cxx::__normal_iterator<void (**)(), std::vector<void (*)(), std::allocator<void (*)()> > >, void (* const&)()) -->
-    <elf-symbol name='_ZNSt6vectorIPFvvESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPFvvESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<void*, STL_Allocator<void*, HeapLeakChecker::Allocator> >::_M_insert_aux(__gnu_cxx::__normal_iterator<void**, std::vector<void*, STL_Allocator<void*, HeapLeakChecker::Allocator> > >, void* const&) -->
-    <elf-symbol name='_ZNSt6vectorIPv13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPv13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<MemoryRegionMap::Region, MemoryRegionMap::Region, std::_Identity<MemoryRegionMap::Region>, MemoryRegionMap::RegionCmp, STL_Allocator<MemoryRegionMap::Region, MemoryRegionMap::MyAllocator> >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, MemoryRegionMap::Region const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<MemoryRegionMap::Region, MemoryRegionMap::Region, std::_Identity<MemoryRegionMap::Region>, MemoryRegionMap::RegionCmp, STL_Allocator<MemoryRegionMap::Region, MemoryRegionMap::MyAllocator> >::_M_erase(std::_Rb_tree_node<MemoryRegionMap::Region>*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<HeapProfileBucket*, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry>, std::_Select1st<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >, std::less<HeapProfileBucket*>, std::allocator<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> > >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<HeapProfileBucket*, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry>, std::_Select1st<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >, std::less<HeapProfileBucket*>, std::allocator<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> > >::_M_insert_unique(std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE16_M_insert_uniqueERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE16_M_insert_uniqueERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<HeapProfileBucket*, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry>, std::_Select1st<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >, std::less<HeapProfileBucket*>, std::allocator<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> > >::_M_insert_unique_(std::_Rb_tree_const_iterator<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<HeapProfileBucket*, std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry>, std::_Select1st<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >, std::less<HeapProfileBucket*>, std::allocator<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> > >::_M_erase(std::_Rb_tree_node<std::pair<HeapProfileBucket* const, HeapProfileTable::Snapshot::Entry> >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<void const*, std::pair<void const* const, char const*>, std::_Select1st<std::pair<void const* const, char const*> >, std::less<void const*>, std::allocator<std::pair<void const* const, char const*> > >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<void const* const, char const*> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<void const*, std::pair<void const* const, char const*>, std::_Select1st<std::pair<void const* const, char const*> >, std::less<void const*>, std::allocator<std::pair<void const* const, char const*> > >::_M_insert_unique(std::pair<void const* const, char const*> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE16_M_insert_uniqueERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE16_M_insert_uniqueERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<void const*, std::pair<void const* const, char const*>, std::_Select1st<std::pair<void const* const, char const*> >, std::less<void const*>, std::allocator<std::pair<void const* const, char const*> > >::_M_insert_unique_(std::_Rb_tree_const_iterator<std::pair<void const* const, char const*> >, std::pair<void const* const, char const*> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS6_ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS6_ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<void const*, std::pair<void const* const, char const*>, std::_Select1st<std::pair<void const* const, char const*> >, std::less<void const*>, std::allocator<std::pair<void const* const, char const*> > >::_M_erase(std::_Rb_tree_node<std::pair<void const* const, char const*> >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >, std::less<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > >, STL_Allocator<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, HeapLeakChecker::Allocator> >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE10_M_insert_EPKSt18_Rb_tree_node_baseSM_RKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE10_M_insert_EPKSt18_Rb_tree_node_baseSM_RKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >, std::less<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > >, STL_Allocator<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, HeapLeakChecker::Allocator> >::_M_insert_unique(std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE16_M_insert_uniqueERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE16_M_insert_uniqueERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >, std::less<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > >, STL_Allocator<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, HeapLeakChecker::Allocator> >::_M_insert_unique_(std::_Rb_tree_const_iterator<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorISD_ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorISD_ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >, std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, std::_Select1st<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >, std::less<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > >, STL_Allocator<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > >, HeapLeakChecker::Allocator> >::_M_erase(std::_Rb_tree_node<std::pair<std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> > const, std::vector<AllocObject, STL_Allocator<AllocObject, HeapLeakChecker::Allocator> > > >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE8_M_eraseEPSt13_Rb_tree_nodeISD_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE8_M_eraseEPSt13_Rb_tree_nodeISD_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, std::pair<unsigned long const, HeapLeakChecker::RangeValue>, std::_Select1st<std::pair<unsigned long const, HeapLeakChecker::RangeValue> >, std::less<unsigned long>, STL_Allocator<std::pair<unsigned long const, HeapLeakChecker::RangeValue>, HeapLeakChecker::Allocator> >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<unsigned long const, HeapLeakChecker::RangeValue> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, std::pair<unsigned long const, HeapLeakChecker::RangeValue>, std::_Select1st<std::pair<unsigned long const, HeapLeakChecker::RangeValue> >, std::less<unsigned long>, STL_Allocator<std::pair<unsigned long const, HeapLeakChecker::RangeValue>, HeapLeakChecker::Allocator> >::_M_erase(std::_Rb_tree_node<std::pair<unsigned long const, HeapLeakChecker::RangeValue> >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, std::pair<unsigned long const, unsigned long>, std::_Select1st<std::pair<unsigned long const, unsigned long> >, std::less<unsigned long>, STL_Allocator<std::pair<unsigned long const, unsigned long>, HeapLeakChecker::Allocator> >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<unsigned long const, unsigned long> const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, std::pair<unsigned long const, unsigned long>, std::_Select1st<std::pair<unsigned long const, unsigned long> >, std::less<unsigned long>, STL_Allocator<std::pair<unsigned long const, unsigned long>, HeapLeakChecker::Allocator> >::_M_erase(std::_Rb_tree_node<std::pair<unsigned long const, unsigned long> >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, unsigned long, std::_Identity<unsigned long>, std::less<unsigned long>, STL_Allocator<unsigned long, HeapLeakChecker::Allocator> >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, unsigned long const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<unsigned long, unsigned long, std::_Identity<unsigned long>, std::less<unsigned long>, STL_Allocator<unsigned long, HeapLeakChecker::Allocator> >::_M_erase(std::_Rb_tree_node<unsigned long>*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeImE' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeImE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__adjust_heap<HeapProfileTable::Snapshot::Entry*, long, HeapProfileTable::Snapshot::Entry>(HeapProfileTable::Snapshot::Entry*, long, long, HeapProfileTable::Snapshot::Entry) -->
-    <elf-symbol name='_ZSt13__adjust_heapIPN16HeapProfileTable8Snapshot5EntryElS2_EvT_T0_S5_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPN16HeapProfileTable8Snapshot5EntryElS2_EvT_T0_S5_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__adjust_heap<HeapProfileBucket**, long, HeapProfileBucket*, bool (*)(HeapProfileStats*, HeapProfileStats*)>(HeapProfileBucket**, long, long, HeapProfileBucket*, bool (*)(HeapProfileStats*, HeapProfileStats*)) -->
-    <elf-symbol name='_ZSt13__adjust_heapIPP17HeapProfileBucketlS1_PFbP16HeapProfileStatsS4_EEvT_T0_S8_T1_T2_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPP17HeapProfileBucketlS1_PFbP16HeapProfileStatsS4_EEvT_T0_S8_T1_T2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__heap_select<HeapProfileBucket**, bool (*)(HeapProfileStats*, HeapProfileStats*)>(HeapProfileBucket**, HeapProfileBucket**, HeapProfileBucket**, bool (*)(HeapProfileStats*, HeapProfileStats*)) -->
-    <elf-symbol name='_ZSt13__heap_selectIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_S7_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__heap_selectIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_S7_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__insertion_sort<HeapProfileTable::Snapshot::Entry*>(HeapProfileTable::Snapshot::Entry*, HeapProfileTable::Snapshot::Entry*) -->
-    <elf-symbol name='_ZSt16__insertion_sortIPN16HeapProfileTable8Snapshot5EntryEEvT_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPN16HeapProfileTable8Snapshot5EntryEEvT_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__insertion_sort<HeapProfileBucket**, bool (*)(HeapProfileStats*, HeapProfileStats*)>(HeapProfileBucket**, HeapProfileBucket**, bool (*)(HeapProfileStats*, HeapProfileStats*)) -->
-    <elf-symbol name='_ZSt16__insertion_sortIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__introsort_loop<HeapProfileTable::Snapshot::Entry*, long>(HeapProfileTable::Snapshot::Entry*, HeapProfileTable::Snapshot::Entry*, long) -->
-    <elf-symbol name='_ZSt16__introsort_loopIPN16HeapProfileTable8Snapshot5EntryElEvT_S4_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPN16HeapProfileTable8Snapshot5EntryElEvT_S4_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__introsort_loop<HeapProfileBucket**, long, bool (*)(HeapProfileStats*, HeapProfileStats*)>(HeapProfileBucket**, HeapProfileBucket**, long, bool (*)(HeapProfileStats*, HeapProfileStats*)) -->
-    <elf-symbol name='_ZSt16__introsort_loopIPP17HeapProfileBucketlPFbP16HeapProfileStatsS4_EEvT_S7_T0_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPP17HeapProfileBucketlPFbP16HeapProfileStatsS4_EEvT_S7_T0_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, char const*) -->
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator delete[](void*) -->
-    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' alias='tc_deletearray' is-defined='yes'/>
+    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_deletearray' is-defined='yes'/>
     <!-- operator delete[](void*, std::nothrow_t const&) -->
-    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' alias='tc_deletearray_nothrow' is-defined='yes'/>
+    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_deletearray_nothrow' is-defined='yes'/>
     <!-- operator delete(void*) -->
-    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' alias='tc_delete' is-defined='yes'/>
+    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_delete' is-defined='yes'/>
     <!-- operator delete(void*, std::nothrow_t const&) -->
-    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new[](unsigned long) -->
-    <elf-symbol name='_Znam' type='func-type' binding='global-binding' alias='tc_newarray' is-defined='yes'/>
+    <elf-symbol name='_Znam' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_newarray' is-defined='yes'/>
     <!-- operator new[](unsigned long, std::nothrow_t const&) -->
-    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new(unsigned long) -->
-    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- operator new(unsigned long, std::nothrow_t const&) -->
-    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_calloc -->
-    <elf-symbol name='__libc_calloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_cfree -->
-    <elf-symbol name='__libc_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_free -->
-    <elf-symbol name='__libc_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_malloc -->
-    <elf-symbol name='__libc_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_memalign -->
-    <elf-symbol name='__libc_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_pvalloc -->
-    <elf-symbol name='__libc_pvalloc' type='func-type' binding='global-binding' alias='tc_pvalloc,pvalloc' is-defined='yes'/>
+    <elf-symbol name='__libc_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_pvalloc,pvalloc' is-defined='yes'/>
     <!-- __libc_realloc -->
-    <elf-symbol name='__libc_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_valloc -->
-    <elf-symbol name='__libc_valloc' type='func-type' binding='global-binding' alias='valloc,tc_valloc' is-defined='yes'/>
+    <elf-symbol name='__libc_valloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='valloc,tc_valloc' is-defined='yes'/>
     <!-- __posix_memalign -->
-    <elf-symbol name='__posix_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- calloc -->
-    <elf-symbol name='calloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cfree -->
-    <elf-symbol name='cfree' type='func-type' binding='global-binding' alias='tc_cfree,__libc_cfree' is-defined='yes'/>
+    <elf-symbol name='cfree' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_cfree,__libc_cfree' is-defined='yes'/>
     <!-- free -->
-    <elf-symbol name='free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- mallinfo -->
-    <elf-symbol name='mallinfo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='mallinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- malloc -->
-    <elf-symbol name='malloc' type='func-type' binding='global-binding' alias='tc_malloc,__libc_malloc' is-defined='yes'/>
+    <elf-symbol name='malloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_malloc,__libc_malloc' is-defined='yes'/>
     <!-- malloc_size -->
-    <elf-symbol name='malloc_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='malloc_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- malloc_stats -->
-    <elf-symbol name='malloc_stats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='malloc_stats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- malloc_usable_size -->
-    <elf-symbol name='malloc_usable_size' type='func-type' binding='global-binding' alias='malloc_size,tc_malloc_size' is-defined='yes'/>
+    <elf-symbol name='malloc_usable_size' type='func-type' binding='global-binding' visibility='default-visibility' alias='malloc_size,tc_malloc_size' is-defined='yes'/>
     <!-- mallopt -->
-    <elf-symbol name='mallopt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='mallopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- memalign -->
-    <elf-symbol name='memalign' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- mmap -->
-    <elf-symbol name='mmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- mmap64 -->
-    <elf-symbol name='mmap64' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='mmap64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- mremap -->
-    <elf-symbol name='mremap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- munmap -->
-    <elf-symbol name='munmap' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- posix_memalign -->
-    <elf-symbol name='posix_memalign' type='func-type' binding='global-binding' alias='tc_posix_memalign,__posix_memalign' is-defined='yes'/>
+    <elf-symbol name='posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_posix_memalign,__posix_memalign' is-defined='yes'/>
     <!-- pvalloc -->
-    <elf-symbol name='pvalloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- realloc -->
-    <elf-symbol name='realloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sbrk -->
-    <elf-symbol name='sbrk' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='sbrk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_calloc -->
-    <elf-symbol name='tc_calloc' type='func-type' binding='global-binding' alias='calloc,__libc_calloc' is-defined='yes'/>
+    <elf-symbol name='tc_calloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='calloc,__libc_calloc' is-defined='yes'/>
     <!-- tc_cfree -->
-    <elf-symbol name='tc_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_delete -->
-    <elf-symbol name='tc_delete' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_delete_nothrow -->
-    <elf-symbol name='tc_delete_nothrow' type='func-type' binding='global-binding' alias='_ZdlPvRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_delete_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZdlPvRKSt9nothrow_t' is-defined='yes'/>
     <!-- tc_deletearray -->
-    <elf-symbol name='tc_deletearray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_deletearray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_deletearray_nothrow -->
-    <elf-symbol name='tc_deletearray_nothrow' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_deletearray_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_free -->
-    <elf-symbol name='tc_free' type='func-type' binding='global-binding' alias='free,__libc_free' is-defined='yes'/>
+    <elf-symbol name='tc_free' type='func-type' binding='global-binding' visibility='default-visibility' alias='free,__libc_free' is-defined='yes'/>
     <!-- tc_mallinfo -->
-    <elf-symbol name='tc_mallinfo' type='func-type' binding='global-binding' alias='mallinfo' is-defined='yes'/>
+    <elf-symbol name='tc_mallinfo' type='func-type' binding='global-binding' visibility='default-visibility' alias='mallinfo' is-defined='yes'/>
     <!-- tc_malloc -->
-    <elf-symbol name='tc_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_malloc_size -->
-    <elf-symbol name='tc_malloc_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_malloc_skip_new_handler -->
-    <elf-symbol name='tc_malloc_skip_new_handler' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_skip_new_handler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_malloc_stats -->
-    <elf-symbol name='tc_malloc_stats' type='func-type' binding='global-binding' alias='malloc_stats' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_stats' type='func-type' binding='global-binding' visibility='default-visibility' alias='malloc_stats' is-defined='yes'/>
     <!-- tc_mallopt -->
-    <elf-symbol name='tc_mallopt' type='func-type' binding='global-binding' alias='mallopt' is-defined='yes'/>
+    <elf-symbol name='tc_mallopt' type='func-type' binding='global-binding' visibility='default-visibility' alias='mallopt' is-defined='yes'/>
     <!-- tc_memalign -->
-    <elf-symbol name='tc_memalign' type='func-type' binding='global-binding' alias='memalign,__libc_memalign' is-defined='yes'/>
+    <elf-symbol name='tc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='memalign,__libc_memalign' is-defined='yes'/>
     <!-- tc_new -->
-    <elf-symbol name='tc_new' type='func-type' binding='global-binding' alias='_Znwm' is-defined='yes'/>
+    <elf-symbol name='tc_new' type='func-type' binding='global-binding' visibility='default-visibility' alias='_Znwm' is-defined='yes'/>
     <!-- tc_new_nothrow -->
-    <elf-symbol name='tc_new_nothrow' type='func-type' binding='global-binding' alias='_ZnwmRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_new_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZnwmRKSt9nothrow_t' is-defined='yes'/>
     <!-- tc_newarray -->
-    <elf-symbol name='tc_newarray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_newarray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_newarray_nothrow -->
-    <elf-symbol name='tc_newarray_nothrow' type='func-type' binding='global-binding' alias='_ZnamRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_newarray_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZnamRKSt9nothrow_t' is-defined='yes'/>
     <!-- tc_posix_memalign -->
-    <elf-symbol name='tc_posix_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_pvalloc -->
-    <elf-symbol name='tc_pvalloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_realloc -->
-    <elf-symbol name='tc_realloc' type='func-type' binding='global-binding' alias='__libc_realloc,realloc' is-defined='yes'/>
+    <elf-symbol name='tc_realloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='__libc_realloc,realloc' is-defined='yes'/>
     <!-- tc_set_new_mode -->
-    <elf-symbol name='tc_set_new_mode' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_set_new_mode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_valloc -->
-    <elf-symbol name='tc_valloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_valloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tc_version -->
-    <elf-symbol name='tc_version' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tc_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- valloc -->
-    <elf-symbol name='valloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='valloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- TCMalloc_SystemTaken -->
-    <elf-symbol name='TCMalloc_SystemTaken' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_SystemTaken' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- CpuProfiler::instance_ -->
-    <elf-symbol name='_ZN11CpuProfiler9instance_E' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler9instance_E' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapCleaner::heap_cleanups_ -->
-    <elf-symbol name='_ZN11HeapCleaner14heap_cleanups_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleaner14heap_cleanups_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::kBufferLength -->
-    <elf-symbol name='_ZN11ProfileData13kBufferLengthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData13kBufferLengthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::kAssociativity -->
-    <elf-symbol name='_ZN11ProfileData14kAssociativityE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData14kAssociativityE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::kMaxStackDepth -->
-    <elf-symbol name='_ZN11ProfileData14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileData::kBuckets -->
-    <elf-symbol name='_ZN11ProfileData8kBucketsE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData8kBucketsE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::kMaxFrequency -->
-    <elf-symbol name='_ZN14ProfileHandler13kMaxFrequencyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13kMaxFrequencyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::kDefaultFrequency -->
-    <elf-symbol name='_ZN14ProfileHandler17kDefaultFrequencyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler17kDefaultFrequencyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::once_ -->
-    <elf-symbol name='_ZN14ProfileHandler5once_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler5once_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ProfileHandler::instance_ -->
-    <elf-symbol name='_ZN14ProfileHandler9instance_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler9instance_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Allocator::alloc_count_ -->
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator12alloc_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator12alloc_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakChecker::Allocator::arena_ -->
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator6arena_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator6arena_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::owner_lock_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap11owner_lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap11owner_lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::unmap_size_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap11unmap_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap11unmap_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::num_buckets_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap12num_buckets_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap12num_buckets_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::bucket_table_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap13bucket_table_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap13bucket_table_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::client_count_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap13client_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap13client_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::saved_buckets_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap14saved_buckets_E' size='1120' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap14saved_buckets_E' size='1120' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::lock_owner_tid_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap15lock_owner_tid_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap15lock_owner_tid_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::max_stack_depth_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap16max_stack_depth_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap16max_stack_depth_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::recursion_count_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap16recursion_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap16recursion_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::saved_buckets_keys_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap19saved_buckets_keys_E' size='5120' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap19saved_buckets_keys_E' size='5120' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::saved_buckets_count_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap20saved_buckets_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20saved_buckets_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::lock_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap5lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap5lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::arena_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap6arena_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap6arena_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::regions_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap8regions_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8regions_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- MemoryRegionMap::map_size_ -->
-    <elf-symbol name='_ZN15MemoryRegionMap9map_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap9map_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::kMaxStackDepth -->
-    <elf-symbol name='_ZN16HeapProfileTable14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapProfileTable::kFileExt -->
-    <elf-symbol name='_ZN16HeapProfileTable8kFileExtE' size='6' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8kFileExtE' size='6' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- HeapLeakCheckerGlobalPrePost::count_ -->
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePost6count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePost6count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::ElfMemImage::kInvalidBase -->
-    <elf-symbol name='_ZN4base11ElfMemImage12kInvalidBaseE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage12kInvalidBaseE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- base::VDSOSupport::vdso_base_ -->
-    <elf-symbol name='_ZN4base11VDSOSupport10vdso_base_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport10vdso_base_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_mmap_log -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead14FLAGS_mmap_logE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead14FLAGS_mmap_logE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nommap_log -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead16FLAGS_nommap_logE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead16FLAGS_nommap_logE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_mmap_profile -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead18FLAGS_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead18FLAGS_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nommap_profile -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_malloc_skip_mmap -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_mmapE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_mmapE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_malloc_skip_sbrk -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_report -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_heap_check_reportE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_heap_check_reportE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_only_mmap_profile -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_only_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_only_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomalloc_skip_mmap -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_mmapE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_mmapE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomalloc_skip_sbrk -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_report -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noheap_check_reportE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noheap_check_reportE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noonly_mmap_profile -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_cpu_profiler_unittest -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead27FLAGS_cpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead27FLAGS_cpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_strict_check -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_heap_check_strict_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_heap_check_strict_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nocpu_profiler_unittest -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_nocpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_nocpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_run_under_gdb -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_heap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_heap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_memfs_malloc_map_private -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_memfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_memfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_cleanup_old_heap_profiles -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_cleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_cleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_identify_leaks -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_heap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_heap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_strict_check -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_noheap_check_strict_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_noheap_check_strict_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_memfs_malloc_abort_on_fail -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_memfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_memfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_run_under_gdb -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_noheap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_noheap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomemfs_malloc_map_private -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nocleanup_old_heap_profiles -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_nocleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_nocleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_identify_leaks -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_noheap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_noheap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_after_destructors -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_heap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_heap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomemfs_malloc_abort_on_fail -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_nomemfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_nomemfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_ignore_global_live -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_ignore_thread_live -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_malloc_disable_memory_release -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_malloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_malloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_memfs_malloc_ignore_mmap_fail -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_memfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_memfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_before_constructors -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_heap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_heap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_after_destructors -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_noheap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_noheap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_ignore_global_live -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_ignore_thread_live -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomalloc_disable_memory_release -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomalloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomalloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_nomemfs_malloc_ignore_mmap_fail -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_before_constructors -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead38FLAGS_noheap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead38FLAGS_noheap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_heap_check_test_pointer_alignment -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead39FLAGS_heap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead39FLAGS_heap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead::FLAGS_noheap_check_test_pointer_alignment -->
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead41FLAGS_noheap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead41FLAGS_noheap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_verbose -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_noverbose -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_malloc_devmem_limit -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_malloc_devmem_start -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_heap_check_max_leaks -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead26FLAGS_heap_check_max_leaksE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead26FLAGS_heap_check_max_leaksE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_nomalloc_devmem_limit -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_limitE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_limitE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_nomalloc_devmem_start -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_startE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_startE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_noheap_check_max_leaks -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead28FLAGS_noheap_check_max_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead28FLAGS_noheap_check_max_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_heap_check_delay_seconds -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead30FLAGS_heap_check_delay_secondsE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead30FLAGS_heap_check_delay_secondsE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_noheap_check_delay_seconds -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead32FLAGS_noheap_check_delay_secondsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead32FLAGS_noheap_check_delay_secondsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_heap_check_pointer_source_alignment -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead41FLAGS_heap_check_pointer_source_alignmentE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead41FLAGS_heap_check_pointer_source_alignmentE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead::FLAGS_noheap_check_pointer_source_alignment -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead43FLAGS_noheap_check_pointer_source_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead43FLAGS_noheap_check_pointer_source_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_memfs_malloc_limit_mb -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead27FLAGS_memfs_malloc_limit_mbE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead27FLAGS_memfs_malloc_limit_mbE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_tcmalloc_heap_limit_mb -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead28FLAGS_tcmalloc_heap_limit_mbE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead28FLAGS_tcmalloc_heap_limit_mbE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_nomemfs_malloc_limit_mb -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead29FLAGS_nomemfs_malloc_limit_mbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead29FLAGS_nomemfs_malloc_limit_mbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_notcmalloc_heap_limit_mb -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead30FLAGS_notcmalloc_heap_limit_mbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead30FLAGS_notcmalloc_heap_limit_mbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_tcmalloc_sample_parameter -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead31FLAGS_tcmalloc_sample_parameterE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead31FLAGS_tcmalloc_sample_parameterE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_heap_profile_time_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead32FLAGS_heap_profile_time_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead32FLAGS_heap_profile_time_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_heap_profile_inuse_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_heap_profile_inuse_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_heap_profile_inuse_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_notcmalloc_sample_parameter -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_notcmalloc_sample_parameterE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_notcmalloc_sample_parameterE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_noheap_profile_time_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead34FLAGS_noheap_profile_time_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead34FLAGS_noheap_profile_time_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_heap_check_max_pointer_offset -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_noheap_profile_inuse_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_noheap_profile_inuse_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_noheap_profile_inuse_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_noheap_check_max_pointer_offset -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_heap_profile_allocation_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead38FLAGS_heap_profile_allocation_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead38FLAGS_heap_profile_allocation_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_heap_profile_deallocation_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_heap_profile_deallocation_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_heap_profile_deallocation_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_noheap_profile_allocation_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_noheap_profile_allocation_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_noheap_profile_allocation_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_noheap_profile_deallocation_interval -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead42FLAGS_noheap_profile_deallocation_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead42FLAGS_noheap_profile_deallocation_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_tcmalloc_large_alloc_report_threshold -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead::FLAGS_notcmalloc_large_alloc_report_threshold -->
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead45FLAGS_notcmalloc_large_alloc_report_thresholdE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead45FLAGS_notcmalloc_large_alloc_report_thresholdE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead::FLAGS_tcmalloc_release_rate -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead27FLAGS_tcmalloc_release_rateE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead27FLAGS_tcmalloc_release_rateE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead::FLAGS_notcmalloc_release_rate -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead29FLAGS_notcmalloc_release_rateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead29FLAGS_notcmalloc_release_rateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_heap_check -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead16FLAGS_heap_checkE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead16FLAGS_heap_checkE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_noheap_check -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead18FLAGS_noheap_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead18FLAGS_noheap_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_symbolize_pprof -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead21FLAGS_symbolize_pprofE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead21FLAGS_symbolize_pprofE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_memfs_malloc_path -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_memfs_malloc_pathE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_memfs_malloc_pathE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_nosymbolize_pprof -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_nosymbolize_pprofE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_nosymbolize_pprofE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_heap_profile_pprof -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead24FLAGS_heap_profile_pprofE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead24FLAGS_heap_profile_pprofE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_nomemfs_malloc_path -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead25FLAGS_nomemfs_malloc_pathE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead25FLAGS_nomemfs_malloc_pathE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_noheap_profile_pprof -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead26FLAGS_noheap_profile_pprofE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead26FLAGS_noheap_profile_pprofE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_heap_check_dump_directory -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead31FLAGS_heap_check_dump_directoryE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead31FLAGS_heap_check_dump_directoryE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::FLAGS_noheap_check_dump_directory -->
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead33FLAGS_noheap_check_dump_directoryE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead33FLAGS_noheap_check_dump_directoryE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- SpinLock::LINKER_INITIALIZED -->
-    <elf-symbol name='_ZN8SpinLock18LINKER_INITIALIZEDE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock18LINKER_INITIALIZEDE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::tsd_inited_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11tsd_inited_E' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11tsd_inited_E' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::thread_heaps_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache13thread_heaps_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache13thread_heaps_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::threadlocal_data_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' size='16' type='tls-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' size='16' type='tls-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::next_memory_steal_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18next_memory_steal_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18next_memory_steal_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::thread_heap_count_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18thread_heap_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18thread_heap_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::per_thread_cache_size_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22per_thread_cache_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22per_thread_cache_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::unclaimed_cache_space_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22unclaimed_cache_space_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22unclaimed_cache_space_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::overall_thread_cache_size_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache26overall_thread_cache_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache26overall_thread_cache_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::ThreadCache::heap_key_ -->
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache9heap_key_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache9heap_key_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::log_message_writer -->
-    <elf-symbol name='_ZN8tcmalloc18log_message_writerE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc18log_message_writerE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::threadcache_allocator -->
-    <elf-symbol name='_ZN8tcmalloc21threadcache_allocatorE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc21threadcache_allocatorE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::central_cache_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static14central_cache_E' size='107008' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14central_cache_E' size='107008' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::growth_stacks_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static14growth_stacks_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14growth_stacks_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::pageheap_lock_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static14pageheap_lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14pageheap_lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::span_allocator_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static15span_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static15span_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::sampled_objects_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static16sampled_objects_E' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static16sampled_objects_E' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::bucket_allocator_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static17bucket_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static17bucket_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::stacktrace_allocator_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static21stacktrace_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static21stacktrace_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::sizemap_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static8sizemap_E' size='3936' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static8sizemap_E' size='3936' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Static::pageheap_ -->
-    <elf-symbol name='_ZN8tcmalloc6Static9pageheap_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static9pageheap_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tcmalloc::Sampler::log_table_ -->
-    <elf-symbol name='_ZN8tcmalloc7Sampler10log_table_E' size='8192' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler10log_table_E' size='8192' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::_Rep::_S_terminal -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep11_S_terminalE' size='1' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep11_S_terminalE' size='1' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::basic_string<char, std::char_traits<char>, STL_Allocator<char, HeapLeakChecker::Allocator> >::_Rep::_S_empty_rep_storage -->
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep20_S_empty_rep_storageE' size='32' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep20_S_empty_rep_storageE' size='32' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for SysAllocator -->
-    <elf-symbol name='_ZTI12SysAllocator' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI12SysAllocator' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for MallocExtension -->
-    <elf-symbol name='_ZTI15MallocExtension' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI15MallocExtension' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for MmapSysAllocator -->
-    <elf-symbol name='_ZTI16MmapSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI16MmapSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for SbrkSysAllocator -->
-    <elf-symbol name='_ZTI16SbrkSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI16SbrkSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for DevMemSysAllocator -->
-    <elf-symbol name='_ZTI18DevMemSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI18DevMemSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for DefaultSysAllocator -->
-    <elf-symbol name='_ZTI19DefaultSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI19DefaultSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for HugetlbSysAllocator -->
-    <elf-symbol name='_ZTI19HugetlbSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI19HugetlbSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for TCMallocImplementation -->
-    <elf-symbol name='_ZTI22TCMallocImplementation' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI22TCMallocImplementation' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for SysAllocator -->
-    <elf-symbol name='_ZTS12SysAllocator' size='15' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS12SysAllocator' size='15' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for MallocExtension -->
-    <elf-symbol name='_ZTS15MallocExtension' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS15MallocExtension' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for MmapSysAllocator -->
-    <elf-symbol name='_ZTS16MmapSysAllocator' size='19' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS16MmapSysAllocator' size='19' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for SbrkSysAllocator -->
-    <elf-symbol name='_ZTS16SbrkSysAllocator' size='19' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS16SbrkSysAllocator' size='19' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for DevMemSysAllocator -->
-    <elf-symbol name='_ZTS18DevMemSysAllocator' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS18DevMemSysAllocator' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for DefaultSysAllocator -->
-    <elf-symbol name='_ZTS19DefaultSysAllocator' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS19DefaultSysAllocator' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for HugetlbSysAllocator -->
-    <elf-symbol name='_ZTS19HugetlbSysAllocator' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS19HugetlbSysAllocator' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for TCMallocImplementation -->
-    <elf-symbol name='_ZTS22TCMallocImplementation' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS22TCMallocImplementation' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for SysAllocator -->
-    <elf-symbol name='_ZTV12SysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV12SysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for MallocExtension -->
-    <elf-symbol name='_ZTV15MallocExtension' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV15MallocExtension' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for MmapSysAllocator -->
-    <elf-symbol name='_ZTV16MmapSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV16MmapSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for SbrkSysAllocator -->
-    <elf-symbol name='_ZTV16SbrkSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV16SbrkSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for DevMemSysAllocator -->
-    <elf-symbol name='_ZTV18DevMemSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV18DevMemSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for DefaultSysAllocator -->
-    <elf-symbol name='_ZTV19DefaultSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV19DefaultSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for HugetlbSysAllocator -->
-    <elf-symbol name='_ZTV19HugetlbSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV19HugetlbSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for TCMallocImplementation -->
-    <elf-symbol name='_ZTV22TCMallocImplementation' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV22TCMallocImplementation' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kPageHeapType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE13kPageHeapType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE13kPageHeapType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kLargeSpanType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE14kLargeSpanType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE14kLargeSpanType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kThreadCacheType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE16kThreadCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE16kThreadCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kCentralCacheType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE17kCentralCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE17kCentralCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kTransferCacheType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE18kTransferCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE18kTransferCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kPageHeapUnmappedType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE21kPageHeapUnmappedType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE21kPageHeapUnmappedType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- TCMallocImplementation::GetFreeListSizes(std::vector<MallocExtension::FreeListInfo, std::allocator<MallocExtension::FreeListInfo> >*)::kLargeUnmappedSpanType -->
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE22kLargeUnmappedSpanType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE22kLargeUnmappedSpanType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __free_hook -->
-    <elf-symbol name='__free_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__free_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __malloc_hook -->
-    <elf-symbol name='__malloc_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__malloc_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __memalign_hook -->
-    <elf-symbol name='__memalign_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__memalign_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __realloc_hook -->
-    <elf-symbol name='__realloc_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__realloc_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- heap_leak_checker_bcad_variable -->
-    <elf-symbol name='heap_leak_checker_bcad_variable' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='heap_leak_checker_bcad_variable' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sys_alloc -->
-    <elf-symbol name='sys_alloc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='sys_alloc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/tcmalloc.cc' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index 00736c396331f38c9b745785ff1f9dc9c575564d..8072a8ef7b4ce48064cbc78fe9958a9a6279b053 100644 (file)
@@ -7,21 +7,21 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- first_type::first_type() -->
-    <elf-symbol name='_ZN10first_typeC1Ev' type='func-type' binding='global-binding' alias='_ZN10first_typeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10first_typeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10first_typeC2Ev' is-defined='yes'/>
     <!-- first_type::first_type() -->
-    <elf-symbol name='_ZN10first_typeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10first_typeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- second_type::second_type() -->
-    <elf-symbol name='_ZN11second_typeC1Ev' type='func-type' binding='global-binding' alias='_ZN11second_typeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11second_typeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11second_typeC2Ev' is-defined='yes'/>
     <!-- second_type::second_type() -->
-    <elf-symbol name='_ZN11second_typeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11second_typeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- a::build_first_type() -->
-    <elf-symbol name='_ZN1a16build_first_typeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN1a16build_first_typeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- a::build_second_type() -->
-    <elf-symbol name='_ZN1a17build_second_typeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN1a17build_second_typeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test2-0.cc' language='LANG_C_plus_plus'>
     <!-- struct first_type -->
index d4f1e63cbdbdf8d88e34060f353b9e563485fd33..7f965900c5e08422e94b27c67455ca496403b9cb 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- vtkProcess::GetController() -->
-    <elf-symbol name='_ZN10vtkProcess13GetControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess13GetControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcess::SetController(vtkMultiProcessController*) -->
-    <elf-symbol name='_ZN10vtkProcess13SetControllerEP25vtkMultiProcessController' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess13SetControllerEP25vtkMultiProcessController' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcess::GetReturnValue() -->
-    <elf-symbol name='_ZN10vtkProcess14GetReturnValueEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess14GetReturnValueEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcess::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN10vtkProcess9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcess::vtkProcess() -->
-    <elf-symbol name='_ZN10vtkProcessC1Ev' type='func-type' binding='global-binding' alias='_ZN10vtkProcessC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcessC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10vtkProcessC2Ev' is-defined='yes'/>
     <!-- vtkProcess::vtkProcess() -->
-    <elf-symbol name='_ZN10vtkProcessC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcessC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Initialize(int, int, int, int, vtkCommunicator*) -->
-    <elf-symbol name='_ZN11vtkSubGroup10InitializeEiiiiP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup10InitializeEiiiiP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::restoreRoot(int) -->
-    <elf-symbol name='_ZN11vtkSubGroup11restoreRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup11restoreRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::getLocalRank(int) -->
-    <elf-symbol name='_ZN11vtkSubGroup12getLocalRankEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup12getLocalRankEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::MakeSortedUnique(int*, int, int**) -->
-    <elf-symbol name='_ZN11vtkSubGroup16MakeSortedUniqueEPiiPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup16MakeSortedUniqueEPiiPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::setGatherPattern(int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup16setGatherPatternEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup16setGatherPatternEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::MergeSortedUnique(int*, int, int*, int, int**) -->
-    <elf-symbol name='_ZN11vtkSubGroup17MergeSortedUniqueEPiiS0_iPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup17MergeSortedUniqueEPiiS0_iPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::AllReduceUniqueList(int*, int, int**) -->
-    <elf-symbol name='_ZN11vtkSubGroup19AllReduceUniqueListEPiiPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup19AllReduceUniqueListEPiiPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::computeFanInTargets() -->
-    <elf-symbol name='_ZN11vtkSubGroup19computeFanInTargetsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup19computeFanInTargetsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::New() -->
-    <elf-symbol name='_ZN11vtkSubGroup3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Gather(char*, char*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPcS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPcS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Gather(float*, float*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Gather(int*, int*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Gather(long long*, long long*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPxS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPxS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Barrier() -->
-    <elf-symbol name='_ZN11vtkSubGroup7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::moveRoot(int) -->
-    <elf-symbol name='_ZN11vtkSubGroup8moveRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup8moveRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Broadcast(char*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPcii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPcii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Broadcast(double*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPdii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPdii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Broadcast(float*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPfii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPfii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Broadcast(int*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::Broadcast(long long*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN11vtkSubGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMax(double*, double*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPdS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPdS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMax(float*, float*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMax(int*, int*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMin(double*, double*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPdS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPdS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMin(float*, float*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceMin(int*, int*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::ReduceSum(int*, int*, int, int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceSumEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceSumEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::setUpRoot(int) -->
-    <elf-symbol name='_ZN11vtkSubGroup9setUpRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9setUpRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::vtkSubGroup() -->
-    <elf-symbol name='_ZN11vtkSubGroupC1Ev' type='func-type' binding='global-binding' alias='_ZN11vtkSubGroupC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11vtkSubGroupC2Ev' is-defined='yes'/>
     <!-- vtkSubGroup::vtkSubGroup() -->
-    <elf-symbol name='_ZN11vtkSubGroupC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::~vtkSubGroup() -->
-    <elf-symbol name='_ZN11vtkSubGroupD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::~vtkSubGroup() -->
-    <elf-symbol name='_ZN11vtkSubGroupD1Ev' type='func-type' binding='global-binding' alias='_ZN11vtkSubGroupD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11vtkSubGroupD2Ev' is-defined='yes'/>
     <!-- vtkSubGroup::~vtkSubGroup() -->
-    <elf-symbol name='_ZN11vtkSubGroupD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllGatherV(vtkDataArray*, vtkDataArray*) -->
-    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllGatherV(vtkDataArray*, vtkDataArray*, long long*, long long*) -->
-    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_PxS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_PxS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::SetUseCopy(int) -->
-    <elf-symbol name='_ZN15vtkCommunicator10SetUseCopyEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10SetUseCopyEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GatherVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ReduceVoidArray(void const*, void*, long long, int, vtkCommunicator::Operation*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiPNS_9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiPNS_9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ReduceVoidArray(void const*, void*, long long, int, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GatherVVoidArray(void const*, void*, long long, long long*, long long*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ScatterVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::MarshalDataObject(vtkDataObject*, vtkCharArray*) -->
-    <elf-symbol name='_ZN15vtkCommunicator17MarshalDataObjectEP13vtkDataObjectP12vtkCharArray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17MarshalDataObjectEP13vtkDataObjectP12vtkCharArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ReceiveDataObject(vtkDataObject*, int, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEP13vtkDataObjectiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEP13vtkDataObjectiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ReceiveDataObject(int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ScatterVVoidArray(void const*, void*, long long*, long long*, long long, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllGatherVoidArray(void const*, void*, long long, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllReduceVoidArray(void const*, void*, long long, int, vtkCommunicator::Operation*) -->
-    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxiPNS_9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxiPNS_9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllReduceVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::BroadcastVoidArray(void*, long long, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GetParentProcessor(int) -->
-    <elf-symbol name='_ZN15vtkCommunicator18GetParentProcessorEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18GetParentProcessorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllGatherVVoidArray(void const*, void*, long long, long long*, long long*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ComputeGlobalBounds(int, int, vtkBoundingBox*, int*, int*, int, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator19ComputeGlobalBoundsEiiP14vtkBoundingBoxPiS2_iii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19ComputeGlobalBoundsEiiP14vtkBoundingBoxPiS2_iii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::UnMarshalDataObject(vtkCharArray*, vtkDataObject*) -->
-    <elf-symbol name='_ZN15vtkCommunicator19UnMarshalDataObjectEP12vtkCharArrayP13vtkDataObject' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19UnMarshalDataObjectEP12vtkCharArrayP13vtkDataObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::SetNumberOfProcesses(int) -->
-    <elf-symbol name='_ZN15vtkCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GetLeftChildProcessor(int) -->
-    <elf-symbol name='_ZN15vtkCommunicator21GetLeftChildProcessorEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator21GetLeftChildProcessorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::SendElementalDataObject(vtkDataObject*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator23SendElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator23SendElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::ReceiveElementalDataObject(vtkDataObject*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator26ReceiveElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator26ReceiveElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Send(vtkDataArray*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator4SendEP12vtkDataArrayii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendEP12vtkDataArrayii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Send(vtkDataObject*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator4SendEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Send(vtkMultiProcessStream const&, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator4SendERK21vtkMultiProcessStreamii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendERK21vtkMultiProcessStreamii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Gather(vtkDataArray*, vtkDataArray*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator6GatherEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6GatherEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Reduce(vtkDataArray*, vtkDataArray*, vtkCommunicator::Operation*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_PNS_9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_PNS_9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Reduce(vtkDataArray*, vtkDataArray*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Barrier() -->
-    <elf-symbol name='_ZN15vtkCommunicator7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GatherV(vtkDataArray*, vtkDataArray*, long long*, long long*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_PxS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_PxS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::GatherV(vtkDataArray*, vtkDataArray*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Receive(vtkDataArray*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP12vtkDataArrayii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP12vtkDataArrayii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Receive(vtkDataObject*, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Receive(vtkMultiProcessStream&, int, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveER21vtkMultiProcessStreamii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveER21vtkMultiProcessStreamii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Scatter(vtkDataArray*, vtkDataArray*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator7ScatterEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ScatterEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllGather(vtkDataArray*, vtkDataArray*) -->
-    <elf-symbol name='_ZN15vtkCommunicator9AllGatherEP12vtkDataArrayS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllGatherEP12vtkDataArrayS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllReduce(vtkDataArray*, vtkDataArray*, vtkCommunicator::Operation*) -->
-    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_PNS_9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_PNS_9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::AllReduce(vtkDataArray*, vtkDataArray*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Broadcast(vtkDataArray*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP12vtkDataArrayi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP12vtkDataArrayi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Broadcast(vtkDataObject*, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP13vtkDataObjecti' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP13vtkDataObjecti' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::Broadcast(vtkMultiProcessStream&, int) -->
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastER21vtkMultiProcessStreami' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastER21vtkMultiProcessStreami' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN15vtkCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::vtkCommunicator() -->
-    <elf-symbol name='_ZN15vtkCommunicatorC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::vtkCommunicator() -->
-    <elf-symbol name='_ZN15vtkCommunicatorC2Ev' type='func-type' binding='global-binding' alias='_ZN15vtkCommunicatorC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkCommunicatorC1Ev' is-defined='yes'/>
     <!-- vtkCommunicator::~vtkCommunicator() -->
-    <elf-symbol name='_ZN15vtkCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkCommunicator::~vtkCommunicator() -->
-    <elf-symbol name='_ZN15vtkCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkCommunicatorD2Ev' is-defined='yes'/>
     <!-- vtkCommunicator::~vtkCommunicator() -->
-    <elf-symbol name='_ZN15vtkCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::Initialize(vtkCommunicator*) -->
-    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::Initialize(vtkMultiProcessController*) -->
-    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP25vtkMultiProcessController' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP25vtkMultiProcessController' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::AddProcessId(int) -->
-    <elf-symbol name='_ZN15vtkProcessGroup12AddProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup12AddProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::FindProcessId(int) -->
-    <elf-symbol name='_ZN15vtkProcessGroup13FindProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup13FindProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::RemoveProcessId(int) -->
-    <elf-symbol name='_ZN15vtkProcessGroup15RemoveProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup15RemoveProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::SetCommunicator(vtkCommunicator*) -->
-    <elf-symbol name='_ZN15vtkProcessGroup15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::GetLocalProcessId() -->
-    <elf-symbol name='_ZN15vtkProcessGroup17GetLocalProcessIdEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup17GetLocalProcessIdEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::RemoveAllProcessIds() -->
-    <elf-symbol name='_ZN15vtkProcessGroup19RemoveAllProcessIdsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup19RemoveAllProcessIdsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::New() -->
-    <elf-symbol name='_ZN15vtkProcessGroup3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::Copy(vtkProcessGroup*) -->
-    <elf-symbol name='_ZN15vtkProcessGroup4CopyEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup4CopyEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN15vtkProcessGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::vtkProcessGroup() -->
-    <elf-symbol name='_ZN15vtkProcessGroupC1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkProcessGroupC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkProcessGroupC2Ev' is-defined='yes'/>
     <!-- vtkProcessGroup::vtkProcessGroup() -->
-    <elf-symbol name='_ZN15vtkProcessGroupC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::~vtkProcessGroup() -->
-    <elf-symbol name='_ZN15vtkProcessGroupD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkProcessGroup::~vtkProcessGroup() -->
-    <elf-symbol name='_ZN15vtkProcessGroupD1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkProcessGroupD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkProcessGroupD2Ev' is-defined='yes'/>
     <!-- vtkProcessGroup::~vtkProcessGroup() -->
-    <elf-symbol name='_ZN15vtkProcessGroupD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::SetCommunicator(vtkCommunicator*) -->
-    <elf-symbol name='_ZN18vtkDummyController15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::SetRMICommunicator(vtkCommunicator*) -->
-    <elf-symbol name='_ZN18vtkDummyController18SetRMICommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController18SetRMICommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::SingleMethodExecute() -->
-    <elf-symbol name='_ZN18vtkDummyController19SingleMethodExecuteEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController19SingleMethodExecuteEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::MultipleMethodExecute() -->
-    <elf-symbol name='_ZN18vtkDummyController21MultipleMethodExecuteEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController21MultipleMethodExecuteEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::New() -->
-    <elf-symbol name='_ZN18vtkDummyController3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN18vtkDummyController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::vtkDummyController() -->
-    <elf-symbol name='_ZN18vtkDummyControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::vtkDummyController() -->
-    <elf-symbol name='_ZN18vtkDummyControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN18vtkDummyControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkDummyControllerC1Ev' is-defined='yes'/>
     <!-- vtkDummyController::~vtkDummyController() -->
-    <elf-symbol name='_ZN18vtkDummyControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyController::~vtkDummyController() -->
-    <elf-symbol name='_ZN18vtkDummyControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkDummyControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkDummyControllerD2Ev' is-defined='yes'/>
     <!-- vtkDummyController::~vtkDummyController() -->
-    <elf-symbol name='_ZN18vtkDummyControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::SendVoidArray(void const*, long long, int, int, int) -->
-    <elf-symbol name='_ZN18vtkSubCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::ReceiveVoidArray(void*, long long, int, int, int) -->
-    <elf-symbol name='_ZN18vtkSubCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::New() -->
-    <elf-symbol name='_ZN18vtkSubCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::SetGroup(vtkProcessGroup*) -->
-    <elf-symbol name='_ZN18vtkSubCommunicator8SetGroupEP15vtkProcessGroup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator8SetGroupEP15vtkProcessGroup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN18vtkSubCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::vtkSubCommunicator() -->
-    <elf-symbol name='_ZN18vtkSubCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkSubCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkSubCommunicatorC2Ev' is-defined='yes'/>
     <!-- vtkSubCommunicator::vtkSubCommunicator() -->
-    <elf-symbol name='_ZN18vtkSubCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::~vtkSubCommunicator() -->
-    <elf-symbol name='_ZN18vtkSubCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubCommunicator::~vtkSubCommunicator() -->
-    <elf-symbol name='_ZN18vtkSubCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkSubCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkSubCommunicatorD2Ev' is-defined='yes'/>
     <!-- vtkSubCommunicator::~vtkSubCommunicator() -->
-    <elf-symbol name='_ZN18vtkSubCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::Initialize(int*, char***) -->
-    <elf-symbol name='_ZN19vtkSocketController10InitializeEPiPPPc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController10InitializeEPiPPPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::CloseConnection() -->
-    <elf-symbol name='_ZN19vtkSocketController15CloseConnectionEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController15CloseConnectionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::SetCommunicator(vtkSocketCommunicator*) -->
-    <elf-symbol name='_ZN19vtkSocketController15SetCommunicatorEP21vtkSocketCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController15SetCommunicatorEP21vtkSocketCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::WaitForConnection(int) -->
-    <elf-symbol name='_ZN19vtkSocketController17WaitForConnectionEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController17WaitForConnectionEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::CreateCompliantController() -->
-    <elf-symbol name='_ZN19vtkSocketController25CreateCompliantControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController25CreateCompliantControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::GetSwapBytesInReceivedData() -->
-    <elf-symbol name='_ZN19vtkSocketController26GetSwapBytesInReceivedDataEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController26GetSwapBytesInReceivedDataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::New() -->
-    <elf-symbol name='_ZN19vtkSocketController3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::ConnectTo(char const*, int) -->
-    <elf-symbol name='_ZN19vtkSocketController9ConnectToEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController9ConnectToEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN19vtkSocketController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::vtkSocketController() -->
-    <elf-symbol name='_ZN19vtkSocketControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::vtkSocketController() -->
-    <elf-symbol name='_ZN19vtkSocketControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN19vtkSocketControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN19vtkSocketControllerC1Ev' is-defined='yes'/>
     <!-- vtkSocketController::~vtkSocketController() -->
-    <elf-symbol name='_ZN19vtkSocketControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::~vtkSocketController() -->
-    <elf-symbol name='_ZN19vtkSocketControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN19vtkSocketControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN19vtkSocketControllerD2Ev' is-defined='yes'/>
     <!-- vtkSocketController::~vtkSocketController() -->
-    <elf-symbol name='_ZN19vtkSocketControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyCommunicator::New() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyCommunicator::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN20vtkDummyCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyCommunicator::vtkDummyCommunicator() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkDummyCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkDummyCommunicatorC2Ev' is-defined='yes'/>
     <!-- vtkDummyCommunicator::vtkDummyCommunicator() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyCommunicator::~vtkDummyCommunicator() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkDummyCommunicator::~vtkDummyCommunicator() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkDummyCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkDummyCommunicatorD2Ev' is-defined='yes'/>
     <!-- vtkDummyCommunicator::~vtkDummyCommunicator() -->
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::GetRawData(unsigned char*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream10GetRawDataERPhRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10GetRawDataERPhRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::SetRawData(unsigned char const*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataEPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataEPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::SetRawData(std::vector<unsigned char, std::allocator<unsigned char> > const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataERKSt6vectorIhSaIhEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataERKSt6vectorIhSaIhEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(char*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPcRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPcRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(double*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPdRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPdRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(float*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPfRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPfRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(unsigned char*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPhRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPhRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(int*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPiRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPiRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(unsigned int*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPjRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPjRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(long long*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPxRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPxRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Pop(unsigned long long*&, unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPyRj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPyRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(char*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPcj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(double*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPdj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPdj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(float*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPfj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPfj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(unsigned char*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPhj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(int*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPij' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPij' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(unsigned int*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPjj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(long long*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPxj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPxj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Push(unsigned long long*, unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPyj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPyj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Size() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream4SizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4SizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Empty() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream5EmptyEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream5EmptyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::Reset() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStream5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::vtkMultiProcessStream(vtkMultiProcessStream const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC1ERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC1ERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::vtkMultiProcessStream() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamC2Ev' is-defined='yes'/>
     <!-- vtkMultiProcessStream::vtkMultiProcessStream(vtkMultiProcessStream const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC2ERKS_' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamC1ERKS_' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC2ERKS_' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamC1ERKS_' is-defined='yes'/>
     <!-- vtkMultiProcessStream::vtkMultiProcessStream() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::~vtkMultiProcessStream() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamD1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamD2Ev' is-defined='yes'/>
     <!-- vtkMultiProcessStream::~vtkMultiProcessStream() -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator=(vtkMultiProcessStream const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamaSERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamaSERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(vtkMultiProcessStream const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(std::string const&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(char) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(double) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(float) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(unsigned char) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEh' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(unsigned int) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(long long) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEx' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator<<(unsigned long long) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(std::string&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERSs' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(char&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(double&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(float&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERf' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(unsigned char&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERh' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(unsigned int&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(long long&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERx' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::operator>>(unsigned long long&) -->
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::GetVersion() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator10GetVersionEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator10GetVersionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::SendTagged(void const*, int, int, int, char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator10SendTaggedEPKviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator10SendTaggedEPKviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::FixByteOrder(void*, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator12FixByteOrderEPvii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12FixByteOrderEPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::GetLogStream() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator12GetLogStreamEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12GetLogStreamEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::SetLogStream(std::ostream*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator12SetLogStreamEPSo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12SetLogStreamEPSo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReceiveTagged(void*, int, int, int, char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator13ReceiveTaggedEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator13ReceiveTaggedEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::SendVoidArray(void const*, long long, int, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::GetIsConnected() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator14GetIsConnectedEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator14GetIsConnectedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::CloseConnection() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator15CloseConnectionEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15CloseConnectionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::GatherVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReduceVoidArray(void const*, void*, long long, int, vtkCommunicator::Operation*, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReduceVoidArray(void const*, void*, long long, int, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::GatherVVoidArray(void const*, void*, long long, long long*, long long*, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReceiveVoidArray(void*, long long, int, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ScatterVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ScatterVVoidArray(void const*, void*, long long*, long long*, long long, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::WaitForConnection(vtkServerSocket*, unsigned long) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEP15vtkServerSocketm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEP15vtkServerSocketm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::WaitForConnection(int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::AllGatherVoidArray(void const*, void*, long long, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::AllReduceVoidArray(void const*, void*, long long, int, vtkCommunicator::Operation*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::AllReduceVoidArray(void const*, void*, long long, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::BroadcastVoidArray(void*, long long, int, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::AllGatherVVoidArray(void const*, void*, long long, long long*, long long*, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ClientSideHandshake() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator19ClientSideHandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19ClientSideHandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ServerSideHandshake() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator19ServerSideHandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19ServerSideHandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::HasBufferredMessages() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator20HasBufferredMessagesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20HasBufferredMessagesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReceivePartialTagged(void*, int, int, int, char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator20ReceivePartialTaggedEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20ReceivePartialTaggedEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::SetNumberOfProcesses(int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::CheckForErrorInternal(int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator21CheckForErrorInternalEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator21CheckForErrorInternalEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ReceivedTaggedFromBuffer(void*, int, int, int, char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator24ReceivedTaggedFromBufferEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator24ReceivedTaggedFromBufferEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::New() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::Barrier() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::ConnectTo(char const*, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9ConnectToEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9ConnectToEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::Handshake() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9HandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9HandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::LogTagged(char const*, void const*, int, int, int, char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogTaggedEPKcPKviiiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogTaggedEPKcPKviiiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::LogToFile(char const*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::LogToFile(char const*, int) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::SetSocket(vtkClientSocket*) -->
-    <elf-symbol name='_ZN21vtkSocketCommunicator9SetSocketEP15vtkClientSocket' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9SetSocketEP15vtkClientSocket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::vtkSocketCommunicator() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkSocketCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkSocketCommunicatorC2Ev' is-defined='yes'/>
     <!-- vtkSocketCommunicator::vtkSocketCommunicator() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::~vtkSocketCommunicator() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketCommunicator::~vtkSocketCommunicator() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkSocketCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkSocketCommunicatorD2Ev' is-defined='yes'/>
     <!-- vtkSocketCommunicator::~vtkSocketCommunicator() -->
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::Deserialize(vtkMultiProcessStream&, vtkFieldData*) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer11DeserializeER21vtkMultiProcessStreamP12vtkFieldData' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer11DeserializeER21vtkMultiProcessStreamP12vtkFieldData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::SerializeTuples(vtkIdList*, vtkFieldData*, vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer15SerializeTuplesEP9vtkIdListP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer15SerializeTuplesEP9vtkIdListP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::SerializeMetaData(vtkFieldData*, vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer17SerializeMetaDataEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer17SerializeMetaDataEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::SerializeDataArray(vtkDataArray*, vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeDataArrayEP12vtkDataArrayR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeDataArrayEP12vtkDataArrayR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::SerializeSubExtent(int*, int*, vtkFieldData*, vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeSubExtentEPiS0_P12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeSubExtentEPiS0_P12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::DeserializeMetaData(vtkMultiProcessStream&, vtkStringArray*, vtkIntArray*, vtkIntArray*) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer19DeserializeMetaDataER21vtkMultiProcessStreamP14vtkStringArrayP11vtkIntArrayS5_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer19DeserializeMetaDataER21vtkMultiProcessStreamP14vtkStringArrayP11vtkIntArrayS5_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::DeserializeDataArray(vtkMultiProcessStream&, vtkDataArray*&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer20DeserializeDataArrayER21vtkMultiProcessStreamRP12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer20DeserializeDataArrayER21vtkMultiProcessStreamRP12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::ExtractSubExtentData(int*, int*, vtkDataArray*) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer20ExtractSubExtentDataEPiS0_P12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer20ExtractSubExtentDataEPiS0_P12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::ExtractSelectedTuples(vtkIdList*, vtkDataArray*) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer21ExtractSelectedTuplesEP9vtkIdListP12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer21ExtractSelectedTuplesEP9vtkIdListP12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::New() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::Serialize(vtkFieldData*, vtkMultiProcessStream&) -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializer9SerializeEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer9SerializeEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::vtkFieldDataSerializer() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializerC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkFieldDataSerializerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkFieldDataSerializerC2Ev' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::vtkFieldDataSerializer() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::~vtkFieldDataSerializer() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::~vtkFieldDataSerializer() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkFieldDataSerializerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkFieldDataSerializerD2Ev' is-defined='yes'/>
     <!-- vtkFieldDataSerializer::~vtkFieldDataSerializer() -->
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::ProcessRMI(int, void*, int, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController10ProcessRMIEiPvii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController10ProcessRMIEiPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::TriggerRMI(int, void*, int, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController10TriggerRMIEiPvii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController10TriggerRMIEiPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::ProcessRMIs(int, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::ProcessRMIs() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::AddRMICallback(void (*)(void*, void*, int, int), void*, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController14AddRMICallbackEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController14AddRMICallbackEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::RemoveFirstRMI(int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController14RemoveFirstRMIEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController14RemoveFirstRMIEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::SetSingleMethod(void (*)(vtkMultiProcessController*, void*), void*) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController15SetSingleMethodEPFvPS_PvES1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController15SetSingleMethodEPFvPS_PvES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::TriggerBreakRMIs() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController16TriggerBreakRMIsEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController16TriggerBreakRMIsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::GetLocalProcessId() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController17GetLocalProcessIdEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17GetLocalProcessIdEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::GetMultipleMethod(int, void (*&)(vtkMultiProcessController*, void*), void*&) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController17GetMultipleMethodEiRPFvPS_PvERS1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17GetMultipleMethodEiRPFvPS_PvERS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::RemoveRMICallback(unsigned long) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController17RemoveRMICallbackEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17RemoveRMICallbackEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::SetMultipleMethod(int, void (*)(vtkMultiProcessController*, void*), void*) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController17SetMultipleMethodEiPFvPS_PvES1_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17SetMultipleMethodEiPFvPS_PvES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::GetLocalController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController18GetLocalControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController18GetLocalControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::TriggerRMIInternal(int, void*, int, int, bool) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController18TriggerRMIInternalEiPviib' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController18TriggerRMIInternalEiPviib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::CreateSubController(vtkProcessGroup*) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController19CreateSubControllerEP15vtkProcessGroup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19CreateSubControllerEP15vtkProcessGroup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::GetGlobalController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController19GetGlobalControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19GetGlobalControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::PartitionController(int, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController19PartitionControllerEii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19PartitionControllerEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::SetGlobalController(vtkMultiProcessController*) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController19SetGlobalControllerEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19SetGlobalControllerEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::GetNumberOfProcesses() -->
-    <elf-symbol name='_ZN25vtkMultiProcessController20GetNumberOfProcessesEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController20GetNumberOfProcessesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::SetNumberOfProcesses(int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::RemoveAllRMICallbacks(int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController21RemoveAllRMICallbacksEi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController21RemoveAllRMICallbacksEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::SetSingleProcessObject(vtkProcess*) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController22SetSingleProcessObjectEP10vtkProcess' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController22SetSingleProcessObjectEP10vtkProcess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::TriggerRMIOnAllChildren(void*, int, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController23TriggerRMIOnAllChildrenEPvii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController23TriggerRMIOnAllChildrenEPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::AddRMI(void (*)(void*, void*, int, int), void*, int) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController6AddRMIEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController6AddRMIEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::PrintSelf(std::ostream&, vtkIndent) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::RemoveRMI(unsigned long) -->
-    <elf-symbol name='_ZN25vtkMultiProcessController9RemoveRMIEm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController9RemoveRMIEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::vtkMultiProcessController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::vtkMultiProcessController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN25vtkMultiProcessControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN25vtkMultiProcessControllerC1Ev' is-defined='yes'/>
     <!-- vtkMultiProcessController::~vtkMultiProcessController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessController::~vtkMultiProcessController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN25vtkMultiProcessControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN25vtkMultiProcessControllerD2Ev' is-defined='yes'/>
     <!-- vtkMultiProcessController::~vtkMultiProcessController() -->
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSubGroup::PrintSubGroup() const -->
-    <elf-symbol name='_ZNK11vtkSubGroup13PrintSubGroupEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK11vtkSubGroup13PrintSubGroupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkMultiProcessStream::GetRawData(std::vector<unsigned char, std::allocator<unsigned char> >&) const -->
-    <elf-symbol name='_ZNK21vtkMultiProcessStream10GetRawDataERSt6vectorIhSaIhEE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK21vtkMultiProcessStream10GetRawDataERSt6vectorIhSaIhEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_List_base<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::~_List_base() -->
-    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' is-defined='yes'/>
     <!-- std::_List_base<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::~_List_base() -->
-    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Deque_base<unsigned char, std::allocator<unsigned char> >::_M_initialize_map(unsigned long) -->
-    <elf-symbol name='_ZNSt11_Deque_baseIhSaIhEE17_M_initialize_mapEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseIhSaIhEE17_M_initialize_mapEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_insert_aux(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, unsigned long, unsigned char const&) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxESt15_Deque_iteratorIhRhPhEmRKh' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxESt15_Deque_iteratorIhRhPhEmRKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<unsigned char, std::allocator<unsigned char> >::_M_insert_aux<std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*> >(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*>, std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*>, unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_m' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<unsigned char, std::allocator<unsigned char> >::_M_insert_aux<std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*> >(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_m' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_reallocate_map(unsigned long, bool) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<unsigned char, std::allocator<unsigned char> >::_M_range_insert_aux<std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*> >(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*>, std::_Deque_iterator<unsigned char, unsigned char const&, unsigned char const*>, std::forward_iterator_tag) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::deque<unsigned char, std::allocator<unsigned char> >::_M_range_insert_aux<std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*> >(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*>, std::forward_iterator_tag) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_reserve_map_at_back(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_new_elements_at_back(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_new_elements_at_front(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::_M_reserve_elements_at_front(unsigned long) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::deque<unsigned char, std::allocator<unsigned char> >::operator=(std::deque<unsigned char, std::allocator<unsigned char> > const&) -->
-    <elf-symbol name='_ZNSt5dequeIhSaIhEEaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEEaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> >::_M_insert_aux(__gnu_cxx::__normal_iterator<vtkMultiProcessController::vtkInternal::vtkRMICallback*, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > >, vtkMultiProcessController::vtkInternal::vtkRMICallback const&) -->
-    <elf-symbol name='_ZNSt6vectorIN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*> >::_M_fill_insert(__gnu_cxx::__normal_iterator<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >**, std::vector<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*> > >, unsigned long, vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >* const&) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void (*)(vtkMultiProcessController*, void*)> >*> >::reserve(unsigned long) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, void*> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void*> >*> >::_M_fill_insert(__gnu_cxx::__normal_iterator<vtksys::_Hashtable_node<std::pair<int const, void*> >**, std::vector<vtksys::_Hashtable_node<std::pair<int const, void*> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void*> >*> > >, unsigned long, vtksys::_Hashtable_node<std::pair<int const, void*> >* const&) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS7_S9_EEmRKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS7_S9_EEmRKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, void*> >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, void*> >*> >::reserve(unsigned long) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*> >::_M_fill_insert(__gnu_cxx::__normal_iterator<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >**, std::vector<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*> > >, unsigned long, vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >* const&) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*, std::allocator<vtksys::_Hashtable_node<std::pair<int const, std::vector<vtkMultiProcessController::vtkInternal::vtkRMICallback, std::allocator<vtkMultiProcessController::vtkInternal::vtkRMICallback> > > >*> >::reserve(unsigned long) -->
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<bool, std::allocator<bool> >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool) -->
-    <elf-symbol name='_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::vector<char, std::allocator<char> >::_M_range_insert<char*>(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, char*, char*, std::forward_iterator_tag) -->
-    <elf-symbol name='_ZNSt6vectorIcSaIcEE15_M_range_insertIPcEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIcSaIcEE15_M_range_insertIPcEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<unsigned char, std::allocator<unsigned char> >::_M_insert_aux(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, unsigned char const&) -->
-    <elf-symbol name='_ZNSt6vectorIhSaIhEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPhS1_EERKh' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIhSaIhEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPhS1_EERKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<unsigned char, std::allocator<unsigned char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, unsigned long, unsigned char const&) -->
-    <elf-symbol name='_ZNSt6vectorIhSaIhEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPhS1_EEmRKh' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIhSaIhEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPhS1_EEmRKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned long, int const&) -->
-    <elf-symbol name='_ZNSt6vectorIiSaIiEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPiS1_EEmRKi' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIiSaIiEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPiS1_EEmRKi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::vector<int, std::allocator<int> >::resize(unsigned long, int) -->
-    <elf-symbol name='_ZNSt6vectorIiSaIiEE6resizeEmi' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIiSaIiEE6resizeEmi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<int, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::_Select1st<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >, std::less<int>, std::allocator<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > > >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE10_M_insert_EPKSt18_Rb_tree_node_baseSH_RKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE10_M_insert_EPKSt18_Rb_tree_node_baseSH_RKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<int, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::_Select1st<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >, std::less<int>, std::allocator<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > > >::_M_insert_unique(std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE16_M_insert_uniqueERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE16_M_insert_uniqueERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<int, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::_Select1st<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >, std::less<int>, std::allocator<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > > >::_M_insert_unique_(std::_Rb_tree_const_iterator<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > const&) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- std::_Rb_tree<int, std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::_Select1st<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >, std::less<int>, std::allocator<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > > >::_M_erase(std::_Rb_tree_node<std::pair<int const, std::list<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > >*) -->
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__adjust_heap<int*, long, int>(int*, long, long, int) -->
-    <elf-symbol name='_ZSt13__adjust_heapIPiliEvT_T0_S2_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPiliEvT_T0_S2_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__insertion_sort<int*>(int*, int*) -->
-    <elf-symbol name='_ZSt16__insertion_sortIPiEvT_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPiEvT_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::__introsort_loop<int*, long>(int*, int*, long) -->
-    <elf-symbol name='_ZSt16__introsort_loopIPilEvT_S1_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPilEvT_S1_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- long long* std::copy<long long const*, long long*>(long long const*, long long const*, long long*) -->
-    <elf-symbol name='_ZSt4copyIPKxPxET0_T_S4_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyIPKxPxET0_T_S4_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- void std::fill<unsigned char>(std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*> const&, std::_Deque_iterator<unsigned char, unsigned char&, unsigned char*> const&, unsigned char const&) -->
-    <elf-symbol name='_ZSt4fillIhEvRKSt15_Deque_iteratorIT_RS1_PS1_ES6_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZSt4fillIhEvRKSt15_Deque_iteratorIT_RS1_PS1_ES6_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- vtkCommunicator::UseCopy -->
-    <elf-symbol name='_ZN15vtkCommunicator7UseCopyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7UseCopyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtkSocketController::Initialized -->
-    <elf-symbol name='_ZN19vtkSocketController11InitializedE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController11InitializedE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkProcess -->
-    <elf-symbol name='_ZTI10vtkProcess' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI10vtkProcess' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSubGroup -->
-    <elf-symbol name='_ZTI11vtkSubGroup' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI11vtkSubGroup' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkCommunicator -->
-    <elf-symbol name='_ZTI15vtkCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI15vtkCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkProcessGroup -->
-    <elf-symbol name='_ZTI15vtkProcessGroup' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI15vtkProcessGroup' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkDummyController -->
-    <elf-symbol name='_ZTI18vtkDummyController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI18vtkDummyController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSubCommunicator -->
-    <elf-symbol name='_ZTI18vtkSubCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI18vtkSubCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSocketController -->
-    <elf-symbol name='_ZTI19vtkSocketController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI19vtkSocketController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkDummyCommunicator -->
-    <elf-symbol name='_ZTI20vtkDummyCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI20vtkDummyCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkSocketCommunicator -->
-    <elf-symbol name='_ZTI21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkFieldDataSerializer -->
-    <elf-symbol name='_ZTI22vtkFieldDataSerializer' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkFieldDataSerializer' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkMultiProcessController -->
-    <elf-symbol name='_ZTI25vtkMultiProcessController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI25vtkMultiProcessController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo for vtkCommunicator::Operation -->
-    <elf-symbol name='_ZTIN15vtkCommunicator9OperationE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTIN15vtkCommunicator9OperationE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkProcess -->
-    <elf-symbol name='_ZTS10vtkProcess' size='13' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS10vtkProcess' size='13' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSubGroup -->
-    <elf-symbol name='_ZTS11vtkSubGroup' size='14' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS11vtkSubGroup' size='14' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkCommunicator -->
-    <elf-symbol name='_ZTS15vtkCommunicator' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS15vtkCommunicator' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkProcessGroup -->
-    <elf-symbol name='_ZTS15vtkProcessGroup' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS15vtkProcessGroup' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkDummyController -->
-    <elf-symbol name='_ZTS18vtkDummyController' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS18vtkDummyController' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSubCommunicator -->
-    <elf-symbol name='_ZTS18vtkSubCommunicator' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS18vtkSubCommunicator' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSocketController -->
-    <elf-symbol name='_ZTS19vtkSocketController' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS19vtkSocketController' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkDummyCommunicator -->
-    <elf-symbol name='_ZTS20vtkDummyCommunicator' size='23' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS20vtkDummyCommunicator' size='23' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkSocketCommunicator -->
-    <elf-symbol name='_ZTS21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkFieldDataSerializer -->
-    <elf-symbol name='_ZTS22vtkFieldDataSerializer' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkFieldDataSerializer' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkMultiProcessController -->
-    <elf-symbol name='_ZTS25vtkMultiProcessController' size='28' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTS25vtkMultiProcessController' size='28' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- typeinfo name for vtkCommunicator::Operation -->
-    <elf-symbol name='_ZTSN15vtkCommunicator9OperationE' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTSN15vtkCommunicator9OperationE' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkProcess -->
-    <elf-symbol name='_ZTV10vtkProcess' size='184' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV10vtkProcess' size='184' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSubGroup -->
-    <elf-symbol name='_ZTV11vtkSubGroup' size='176' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV11vtkSubGroup' size='176' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkCommunicator -->
-    <elf-symbol name='_ZTV15vtkCommunicator' size='328' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV15vtkCommunicator' size='328' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkProcessGroup -->
-    <elf-symbol name='_ZTV15vtkProcessGroup' size='192' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV15vtkProcessGroup' size='192' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkDummyController -->
-    <elf-symbol name='_ZTV18vtkDummyController' size='368' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV18vtkDummyController' size='368' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSubCommunicator -->
-    <elf-symbol name='_ZTV18vtkSubCommunicator' size='344' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV18vtkSubCommunicator' size='344' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSocketController -->
-    <elf-symbol name='_ZTV19vtkSocketController' size='376' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV19vtkSocketController' size='376' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkDummyCommunicator -->
-    <elf-symbol name='_ZTV20vtkDummyCommunicator' size='328' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV20vtkDummyCommunicator' size='328' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkSocketCommunicator -->
-    <elf-symbol name='_ZTV21vtkSocketCommunicator' size='480' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV21vtkSocketCommunicator' size='480' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkFieldDataSerializer -->
-    <elf-symbol name='_ZTV22vtkFieldDataSerializer' size='176' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkFieldDataSerializer' size='176' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkMultiProcessController -->
-    <elf-symbol name='_ZTV25vtkMultiProcessController' size='344' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTV25vtkMultiProcessController' size='344' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vtable for vtkCommunicator::Operation -->
-    <elf-symbol name='_ZTVN15vtkCommunicator9OperationE' size='48' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTVN15vtkCommunicator9OperationE' size='48' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkCommunicator.cxx' language='LANG_C_plus_plus'>
     <!-- namespace std -->
index db097b457b8010a4d1ea072685f0de4c04e782cb..b637acb178c90841b9545f2166568f18b4c31ab8 100644 (file)
   </elf-needed>
   <elf-function-symbols>
     <!-- cpp_assert(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z10cpp_assertP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_assertP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_define(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z10cpp_defineP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_defineP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_finish(cpp_reader*, _IO_FILE*) -->
-    <elf-symbol name='_Z10cpp_finishP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_finishP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_lookup(cpp_reader*, unsigned char const*, unsigned int) -->
-    <elf-symbol name='_Z10cpp_lookupP10cpp_readerPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_lookupP10cpp_readerPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_write(deps const*, _IO_FILE*, unsigned int) -->
-    <elf-symbol name='_Z10deps_writePK4depsP8_IO_FILEj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10deps_writePK4depsP8_IO_FILEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- get_spaces(char const*) -->
-    <elf-symbol name='_Z10get_spacesPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10get_spacesPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_destroy(ht*) -->
-    <elf-symbol name='_Z10ht_destroyP2ht' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10ht_destroyP2ht' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- seen_error() -->
-    <elf-symbol name='_Z10seen_errorv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10seen_errorv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- warning_at(unsigned int, int, char const*, ...) -->
-    <elf-symbol name='_Z10warning_atjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10warning_atjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_defined(cpp_reader*, unsigned char const*, int) -->
-    <elf-symbol name='_Z11cpp_definedP10cpp_readerPKhi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_definedP10cpp_readerPKhi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_destroy(cpp_reader*) -->
-    <elf-symbol name='_Z11cpp_destroyP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_destroyP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_dir(_cpp_file*) -->
-    <elf-symbol name='_Z11cpp_get_dirP9_cpp_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_get_dirP9_cpp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_warning(cpp_reader*, int, char const*, ...) -->
-    <elf-symbol name='_Z11cpp_warningP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_warningP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fancy_abort(char const*, int, char const*) -->
-    <elf-symbol name='_Z11fancy_abortPKciS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11fancy_abortPKciS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fatal_error(char const*, ...) -->
-    <elf-symbol name='_Z11fatal_errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11fatal_errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- file_exists(char const*) -->
-    <elf-symbol name='_Z11file_existsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11file_existsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_add(line_maps*, lc_reason, unsigned int, char const*, unsigned int) -->
-    <elf-symbol name='_Z11linemap_addP9line_maps9lc_reasonjPKcj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11linemap_addP9line_maps9lc_reasonjPKcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_verbatim(pretty_print_info*, char const*, ...) -->
-    <elf-symbol name='_Z11pp_verbatimP17pretty_print_infoPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z11pp_verbatimP17pretty_print_infoPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- collect_wait(char const*, pex_obj*) -->
-    <elf-symbol name='_Z12collect_waitPKcP7pex_obj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12collect_waitPKcP7pex_obj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_deps(cpp_reader*) -->
-    <elf-symbol name='_Z12cpp_get_depsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_depsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_file(cpp_buffer*) -->
-    <elf-symbol name='_Z12cpp_get_fileP10cpp_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_fileP10cpp_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_path(_cpp_file*) -->
-    <elf-symbol name='_Z12cpp_get_pathP9_cpp_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_pathP9_cpp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_prev(cpp_buffer*) -->
-    <elf-symbol name='_Z12cpp_get_prevP10cpp_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_prevP10cpp_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_included(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z12cpp_includedP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_includedP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_set_lang(cpp_reader*, c_lang) -->
-    <elf-symbol name='_Z12cpp_set_langP10cpp_reader6c_lang' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_set_langP10cpp_reader6c_lang' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_unassert(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z12cpp_unassertP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_unassertP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_add_dep(deps*, char const*) -->
-    <elf-symbol name='_Z12deps_add_depP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12deps_add_depP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_restore(deps*, _IO_FILE*, char const*) -->
-    <elf-symbol name='_Z12deps_restoreP4depsP8_IO_FILEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12deps_restoreP4depsP8_IO_FILEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_dump(_IO_FILE*, line_maps*, unsigned int, bool) -->
-    <elf-symbol name='_Z12linemap_dumpP8_IO_FILEP9line_mapsjb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12linemap_dumpP8_IO_FILEP9line_mapsjb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_init(line_maps*) -->
-    <elf-symbol name='_Z12linemap_initP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12linemap_initP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_construct(pretty_print_info*, char const*, int) -->
-    <elf-symbol name='_Z12pp_constructP17pretty_print_infoPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z12pp_constructP17pretty_print_infoPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_token(cpp_reader*) -->
-    <elf-symbol name='_Z13cpp_get_tokenP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_get_tokenP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_token_len(cpp_token const*) -->
-    <elf-symbol name='_Z13cpp_token_lenPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_token_lenPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_type2name(cpp_ttype, unsigned char) -->
-    <elf-symbol name='_Z13cpp_type2name9cpp_ttypeh' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_type2name9cpp_ttypeh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_undef_all(cpp_reader*) -->
-    <elf-symbol name='_Z13cpp_undef_allP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_undef_allP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_flush(pretty_print_info*) -->
-    <elf-symbol name='_Z13pp_base_flushP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13pp_base_flushP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- trim_filename(char const*) -->
-    <elf-symbol name='_Z13trim_filenamePKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z13trim_filenamePKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_buffer(cpp_reader*) -->
-    <elf-symbol name='_Z14cpp_get_bufferP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_get_bufferP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_init_iconv(cpp_reader*) -->
-    <elf-symbol name='_Z14cpp_init_iconvP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_init_iconvP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_pedwarning(cpp_reader*, int, char const*, ...) -->
-    <elf-symbol name='_Z14cpp_pedwarningP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_pedwarningP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_peek_token(cpp_reader*, int) -->
-    <elf-symbol name='_Z14cpp_peek_tokenP10cpp_readeri' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_peek_tokenP10cpp_readeri' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_add_vpath(deps*, char const*) -->
-    <elf-symbol name='_Z14deps_add_vpathP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14deps_add_vpathP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- internal_error(char const*, ...) -->
-    <elf-symbol name='_Z14internal_errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14internal_errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_lookup(line_maps*, unsigned int) -->
-    <elf-symbol name='_Z14linemap_lookupP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14linemap_lookupP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_format(pretty_print_info*, text_info*) -->
-    <elf-symbol name='_Z14pp_base_formatP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_formatP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_indent(pretty_print_info*) -->
-    <elf-symbol name='_Z14pp_base_indentP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_indentP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_string(pretty_print_info*, char const*) -->
-    <elf-symbol name='_Z14pp_base_stringP17pretty_print_infoPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_stringP17pretty_print_infoPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_free(void*) -->
-    <elf-symbol name='_Z14vec_stack_freePv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z14vec_stack_freePv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- collect_execute(char const*, char**, char const*, char const*, int) -->
-    <elf-symbol name='_Z15collect_executePKcPPcS0_S0_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15collect_executePKcPPcS0_S0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_avoid_paste(cpp_reader*, cpp_token const*, cpp_token const*) -->
-    <elf-symbol name='_Z15cpp_avoid_pasteP10cpp_readerPK9cpp_tokenS3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_avoid_pasteP10cpp_readerPK9cpp_tokenS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_change_file(cpp_reader*, lc_reason, char const*) -->
-    <elf-symbol name='_Z15cpp_change_fileP10cpp_reader9lc_reasonPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_change_fileP10cpp_reader9lc_reasonPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_options(cpp_reader*) -->
-    <elf-symbol name='_Z15cpp_get_optionsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_get_optionsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_output_line(cpp_reader*, _IO_FILE*) -->
-    <elf-symbol name='_Z15cpp_output_lineP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_output_lineP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_push_buffer(cpp_reader*, unsigned char const*, unsigned long, int) -->
-    <elf-symbol name='_Z15cpp_push_bufferP10cpp_readerPKhmi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_push_bufferP10cpp_readerPKhmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_spell_token(cpp_reader*, cpp_token const*, unsigned char*, bool) -->
-    <elf-symbol name='_Z15cpp_spell_tokenP10cpp_readerPK9cpp_tokenPhb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_spell_tokenP10cpp_readerPK9cpp_tokenPhb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_sys_macro_p(cpp_reader*) -->
-    <elf-symbol name='_Z15cpp_sys_macro_pP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_sys_macro_pP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_add_target(deps*, char const*, int) -->
-    <elf-symbol name='_Z15deps_add_targetP4depsPKci' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15deps_add_targetP4depsPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- emit_diagnostic(diagnostic_t, unsigned int, int, char const*, ...) -->
-    <elf-symbol name='_Z15emit_diagnostic12diagnostic_tjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15emit_diagnostic12diagnostic_tjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- expand_location(unsigned int) -->
-    <elf-symbol name='_Z15expand_locationj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15expand_locationj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- line_table_dump(_IO_FILE*, line_maps*, unsigned int, unsigned int) -->
-    <elf-symbol name='_Z15line_table_dumpP8_IO_FILEP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15line_table_dumpP8_IO_FILEP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_newline(pretty_print_info*) -->
-    <elf-symbol name='_Z15pp_base_newlineP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z15pp_base_newlineP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_comments(cpp_reader*) -->
-    <elf-symbol name='_Z16cpp_get_commentsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_get_commentsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_output_token(cpp_token const*, _IO_FILE*) -->
-    <elf-symbol name='_Z16cpp_output_tokenPK9cpp_tokenP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_output_tokenPK9cpp_tokenP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_post_options(cpp_reader*) -->
-    <elf-symbol name='_Z16cpp_post_optionsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_post_optionsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_push_include(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z16cpp_push_includeP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_push_includeP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_quote_string(unsigned char*, unsigned char const*, unsigned int) -->
-    <elf-symbol name='_Z16cpp_quote_stringPhPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_quote_stringPhPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_set_line_map(cpp_reader*, line_maps*) -->
-    <elf-symbol name='_Z16cpp_set_line_mapP10cpp_readerP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_set_line_mapP10cpp_readerP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gcc_init_libintl() -->
-    <elf-symbol name='_Z16gcc_init_libintlv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16gcc_init_libintlv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_realloc_stat(void*, unsigned long) -->
-    <elf-symbol name='_Z16ggc_realloc_statPvm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16ggc_realloc_statPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_gc_o_reserve(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z16vec_gc_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16vec_gc_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_gc_p_reserve(void*, int) -->
-    <elf-symbol name='_Z16vec_gc_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z16vec_gc_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_create_reader(c_lang, ht*, line_maps*) -->
-    <elf-symbol name='_Z17cpp_create_reader6c_langP2htP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_create_reader6c_langP2htP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_callbacks(cpp_reader*) -->
-    <elf-symbol name='_Z17cpp_get_callbacksP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_get_callbacksP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_init_builtins(cpp_reader*, int) -->
-    <elf-symbol name='_Z17cpp_init_builtinsP10cpp_readeri' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_init_builtinsP10cpp_readeri' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_scan_nooutput(cpp_reader*) -->
-    <elf-symbol name='_Z17cpp_scan_nooutputP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_scan_nooutputP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_set_callbacks(cpp_reader*, cpp_callbacks*) -->
-    <elf-symbol name='_Z17cpp_set_callbacksP10cpp_readerP13cpp_callbacks' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_set_callbacksP10cpp_readerP13cpp_callbacks' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_token_as_text(cpp_reader*, cpp_token const*) -->
-    <elf-symbol name='_Z17cpp_token_as_textP10cpp_readerPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_token_as_textP10cpp_readerPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_finish(diagnostic_context*) -->
-    <elf-symbol name='_Z17diagnostic_finishP18diagnostic_context' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17diagnostic_finishP18diagnostic_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- gcc_gettext_width(char const*) -->
-    <elf-symbol name='_Z17gcc_gettext_widthPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17gcc_gettext_widthPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- notice_translated(char const*, ...) -->
-    <elf-symbol name='_Z17notice_translatedPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17notice_translatedPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_character(pretty_print_info*, int) -->
-    <elf-symbol name='_Z17pp_base_characterP17pretty_print_infoi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z17pp_base_characterP17pretty_print_infoi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_backup_tokens(cpp_reader*, unsigned int) -->
-    <elf-symbol name='_Z18_cpp_backup_tokensP10cpp_readerj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18_cpp_backup_tokensP10cpp_readerj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_read_main_file(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z18cpp_read_main_fileP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_read_main_fileP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_char_p(cpp_ttype) -->
-    <elf-symbol name='_Z18cpp_userdef_char_p9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_userdef_char_p9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_warning_syshdr(cpp_reader*, int, char const*, ...) -->
-    <elf-symbol name='_Z18cpp_warning_syshdrP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_warning_syshdrP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_phony_targets(deps const*, _IO_FILE*) -->
-    <elf-symbol name='_Z18deps_phony_targetsPK4depsP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18deps_phony_targetsPK4depsP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_dump_statistics(ht*) -->
-    <elf-symbol name='_Z18ht_dump_statisticsP2ht' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18ht_dump_statisticsP2ht' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_line_start(line_maps*, unsigned int, unsigned int) -->
-    <elf-symbol name='_Z18linemap_line_startP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18linemap_line_startP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_set_prefix(pretty_print_info*, char const*) -->
-    <elf-symbol name='_Z18pp_base_set_prefixP17pretty_print_infoPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18pp_base_set_prefixP17pretty_print_infoPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_heap_o_reserve(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z18vec_heap_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18vec_heap_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_heap_p_reserve(void*, int) -->
-    <elf-symbol name='_Z18vec_heap_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z18vec_heap_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_classify_number(cpp_reader*, cpp_token const*, char const**) -->
-    <elf-symbol name='_Z19cpp_classify_numberP10cpp_readerPK9cpp_tokenPPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_classify_numberP10cpp_readerPK9cpp_tokenPPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_error_with_line(cpp_reader*, int, unsigned int, unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z19cpp_error_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_error_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_included_before(cpp_reader*, char const*, unsigned int) -->
-    <elf-symbol name='_Z19cpp_included_beforeP10cpp_readerPKcj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_included_beforeP10cpp_readerPKcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_num_sign_extend(cpp_num, unsigned long) -->
-    <elf-symbol name='_Z19cpp_num_sign_extend7cpp_numm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_num_sign_extend7cpp_numm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_register_pragma(cpp_reader*, char const*, char const*, void (*)(cpp_reader*), bool) -->
-    <elf-symbol name='_Z19cpp_register_pragmaP10cpp_readerPKcS2_PFvS0_Eb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_register_pragmaP10cpp_readerPKcS2_PFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_token_val_index(cpp_token*) -->
-    <elf-symbol name='_Z19cpp_token_val_indexP9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_token_val_indexP9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_set_info(diagnostic_info*, char const*, __va_list_tag (*) [1], unsigned int, diagnostic_t) -->
-    <elf-symbol name='_Z19diagnostic_set_infoP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19diagnostic_set_infoP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- file_name_as_prefix(char const*) -->
-    <elf-symbol name='_Z19file_name_as_prefixPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19file_name_as_prefixPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_lookup_with_hash(ht*, unsigned char const*, unsigned long, unsigned int, ht_lookup_option) -->
-    <elf-symbol name='_Z19ht_lookup_with_hashP2htPKhmj16ht_lookup_option' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19ht_lookup_with_hashP2htPKhmj16ht_lookup_option' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_append_text(pretty_print_info*, char const*, char const*) -->
-    <elf-symbol name='_Z19pp_base_append_textP17pretty_print_infoPKcS2_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_append_textP17pretty_print_infoPKcS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_emit_prefix(pretty_print_info*) -->
-    <elf-symbol name='_Z19pp_base_emit_prefixP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_emit_prefixP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_maybe_space(pretty_print_info*) -->
-    <elf-symbol name='_Z19pp_base_maybe_spaceP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_maybe_spaceP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_o_reserve(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z19vec_stack_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19vec_stack_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_p_reserve(void*, int) -->
-    <elf-symbol name='_Z19vec_stack_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z19vec_stack_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_clear_file_cache(cpp_reader*) -->
-    <elf-symbol name='_Z20cpp_clear_file_cacheP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_clear_file_cacheP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_define_formatted(cpp_reader*, char const*, ...) -->
-    <elf-symbol name='_Z20cpp_define_formattedP10cpp_readerPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_define_formattedP10cpp_readerPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_string(cpp_reader*, cpp_string const*, unsigned long, cpp_string*, cpp_ttype) -->
-    <elf-symbol name='_Z20cpp_interpret_stringP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_interpret_stringP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_macro_definition(cpp_reader*, cpp_hashnode*) -->
-    <elf-symbol name='_Z20cpp_macro_definitionP10cpp_readerP12cpp_hashnode' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_macro_definitionP10cpp_readerP12cpp_hashnode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_string_p(cpp_ttype) -->
-    <elf-symbol name='_Z20cpp_userdef_string_p9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_userdef_string_p9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_alloc_typed_stat(gt_types_enum, unsigned long) -->
-    <elf-symbol name='_Z20ggc_alloc_typed_stat13gt_types_enumm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20ggc_alloc_typed_stat13gt_types_enumm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_round_alloc_size(unsigned long) -->
-    <elf-symbol name='_Z20ggc_round_alloc_sizem' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20ggc_round_alloc_sizem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- identifier_to_locale(char const*) -->
-    <elf-symbol name='_Z20identifier_to_localePKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z20identifier_to_localePKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_integer(cpp_reader*, cpp_token const*, unsigned int) -->
-    <elf-symbol name='_Z21cpp_interpret_integerP10cpp_readerPK9cpp_tokenj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z21cpp_interpret_integerP10cpp_readerPK9cpp_tokenj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_warning_with_line(cpp_reader*, int, unsigned int, unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z21cpp_warning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z21cpp_warning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_initialize(diagnostic_context*, int) -->
-    <elf-symbol name='_Z21diagnostic_initializeP18diagnostic_contexti' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z21diagnostic_initializeP18diagnostic_contexti' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_dump_location(line_maps*, unsigned int, _IO_FILE*) -->
-    <elf-symbol name='_Z21linemap_dump_locationP9line_mapsjP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z21linemap_dump_locationP9line_mapsjP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_forall_identifiers(cpp_reader*, int (*)(cpp_reader*, cpp_hashnode*, void*), void*) -->
-    <elf-symbol name='_Z22cpp_forall_identifiersP10cpp_readerPFiS0_P12cpp_hashnodePvES3_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_forall_identifiersP10cpp_readerPFiS0_P12cpp_hashnodePvES3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_userdef_suffix(cpp_token const*) -->
-    <elf-symbol name='_Z22cpp_get_userdef_suffixPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_get_userdef_suffixPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_make_system_header(cpp_reader*, int, int) -->
-    <elf-symbol name='_Z22cpp_make_system_headerP10cpp_readerii' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_make_system_headerP10cpp_readerii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_set_include_chains(cpp_reader*, cpp_dir*, cpp_dir*, int) -->
-    <elf-symbol name='_Z22cpp_set_include_chainsP10cpp_readerP7cpp_dirS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_set_include_chainsP10cpp_readerP7cpp_dirS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_get_statistics(line_maps*, linemap_stats*) -->
-    <elf-symbol name='_Z22linemap_get_statisticsP9line_mapsP13linemap_stats' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22linemap_get_statisticsP9line_mapsP13linemap_stats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_destroy_prefix(pretty_print_info*) -->
-    <elf-symbol name='_Z22pp_base_destroy_prefixP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22pp_base_destroy_prefixP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_formatted_text(pretty_print_info*) -->
-    <elf-symbol name='_Z22pp_base_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22pp_base_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_gc_o_reserve_exact(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z22vec_gc_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22vec_gc_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_gc_p_reserve_exact(void*, int) -->
-    <elf-symbol name='_Z22vec_gc_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z22vec_gc_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_charconst(cpp_reader*, cpp_token const*, unsigned int*, int*) -->
-    <elf-symbol name='_Z23cpp_interpret_charconstP10cpp_readerPK9cpp_tokenPjPi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23cpp_interpret_charconstP10cpp_readerPK9cpp_tokenPjPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_add_default_target(deps*, char const*) -->
-    <elf-symbol name='_Z23deps_add_default_targetP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23deps_add_default_targetP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_build_prefix(diagnostic_context*, diagnostic_info*) -->
-    <elf-symbol name='_Z23diagnostic_build_prefixP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23diagnostic_build_prefixP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dump_vec_loc_statistics() -->
-    <elf-symbol name='_Z23dump_vec_loc_statisticsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23dump_vec_loc_statisticsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_internal_alloc_stat(unsigned long) -->
-    <elf-symbol name='_Z23ggc_internal_alloc_statm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23ggc_internal_alloc_statm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_expand_location(line_maps*, line_map const*, unsigned int) -->
-    <elf-symbol name='_Z23linemap_expand_locationP9line_mapsPK8line_mapj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23linemap_expand_locationP9line_mapsPK8line_mapj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_format_verbatim(pretty_print_info*, text_info*) -->
-    <elf-symbol name='_Z23pp_base_format_verbatimP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23pp_base_format_verbatimP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_write_text_to_stream(pretty_print_info*) -->
-    <elf-symbol name='_Z23pp_write_text_to_streamP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z23pp_write_text_to_streamP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_host_to_exec_charset(cpp_reader*, unsigned int) -->
-    <elf-symbol name='_Z24cpp_host_to_exec_charsetP10cpp_readerj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_host_to_exec_charsetP10cpp_readerj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_int_suffix(char const*, unsigned long) -->
-    <elf-symbol name='_Z24cpp_interpret_int_suffixPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_interpret_int_suffixPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_pedwarning_with_line(cpp_reader*, int, unsigned int, unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z24cpp_pedwarning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_pedwarning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_resolve_location(line_maps*, unsigned int, location_resolution_kind, line_map const**) -->
-    <elf-symbol name='_Z24linemap_resolve_locationP9line_mapsj24location_resolution_kindPPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24linemap_resolve_locationP9line_mapsj24location_resolution_kindPPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_heap_o_reserve_exact(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z24vec_heap_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24vec_heap_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_heap_p_reserve_exact(void*, int) -->
-    <elf-symbol name='_Z24vec_heap_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z24vec_heap_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_force_token_locations(cpp_reader*, unsigned int*) -->
-    <elf-symbol name='_Z25cpp_force_token_locationsP10cpp_readerPj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_force_token_locationsP10cpp_readerPj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_init_special_builtins(cpp_reader*) -->
-    <elf-symbol name='_Z25cpp_init_special_builtinsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_init_special_builtinsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_output_line_to_string(cpp_reader*, unsigned char const*) -->
-    <elf-symbol name='_Z25cpp_output_line_to_stringP10cpp_readerPKh' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_output_line_to_stringP10cpp_readerPKh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_char_add_type(cpp_ttype) -->
-    <elf-symbol name='_Z25cpp_userdef_char_add_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_userdef_char_add_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_compare_locations(line_maps*, unsigned int, unsigned int) -->
-    <elf-symbol name='_Z25linemap_compare_locationsP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25linemap_compare_locationsP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_clear_output_area(pretty_print_info*) -->
-    <elf-symbol name='_Z25pp_base_clear_output_areaP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25pp_base_clear_output_areaP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_o_reserve_exact(void*, int, unsigned long, unsigned long) -->
-    <elf-symbol name='_Z25vec_stack_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25vec_stack_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_p_reserve_exact(void*, int) -->
-    <elf-symbol name='_Z25vec_stack_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z25vec_stack_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_float_suffix(char const*, unsigned long) -->
-    <elf-symbol name='_Z26cpp_interpret_float_suffixPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26cpp_interpret_float_suffixPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- default_diagnostic_starter(diagnostic_context*, diagnostic_info*) -->
-    <elf-symbol name='_Z26default_diagnostic_starterP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26default_diagnostic_starterP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_pop_diagnostics(diagnostic_context*, unsigned int) -->
-    <elf-symbol name='_Z26diagnostic_pop_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26diagnostic_pop_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dump_line_table_statistics() -->
-    <elf-symbol name='_Z26dump_line_table_statisticsv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26dump_line_table_statisticsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_check_files_exited(line_maps*) -->
-    <elf-symbol name='_Z26linemap_check_files_exitedP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26linemap_check_files_exitedP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_map_get_macro_name(line_map const*) -->
-    <elf-symbol name='_Z26linemap_map_get_macro_namePK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z26linemap_map_get_macro_namePK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_get_token_with_location(cpp_reader*, unsigned int*) -->
-    <elf-symbol name='_Z27cpp_get_token_with_locationP10cpp_readerPj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z27cpp_get_token_with_locationP10cpp_readerPj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_string_add_type(cpp_ttype) -->
-    <elf-symbol name='_Z27cpp_userdef_string_add_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z27cpp_userdef_string_add_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_push_diagnostics(diagnostic_context*, unsigned int) -->
-    <elf-symbol name='_Z27diagnostic_push_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z27diagnostic_push_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_position_for_column(line_maps*, unsigned int) -->
-    <elf-symbol name='_Z27linemap_position_for_columnP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z27linemap_position_for_columnP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vec_stack_p_reserve_exact_1(int, void*) -->
-    <elf-symbol name='_Z27vec_stack_p_reserve_exact_1iPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z27vec_stack_p_reserve_exact_1iPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_register_deferred_pragma(cpp_reader*, char const*, char const*, unsigned int, bool, bool) -->
-    <elf-symbol name='_Z28cpp_register_deferred_pragmaP10cpp_readerPKcS2_jbb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_register_deferred_pragmaP10cpp_readerPKcS2_jbb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_char_remove_type(cpp_ttype) -->
-    <elf-symbol name='_Z28cpp_userdef_char_remove_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_userdef_char_remove_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_warning_with_line_syshdr(cpp_reader*, int, unsigned int, unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z28cpp_warning_with_line_syshdrP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_warning_with_line_syshdrP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- default_diagnostic_finalizer(diagnostic_context*, diagnostic_info*) -->
-    <elf-symbol name='_Z28default_diagnostic_finalizerP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28default_diagnostic_finalizerP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_report_diagnostic(diagnostic_context*, diagnostic_info*) -->
-    <elf-symbol name='_Z28diagnostic_report_diagnosticP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z28diagnostic_report_diagnosticP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_macro_expansion_map_p(line_map const*) -->
-    <elf-symbol name='_Z29linemap_macro_expansion_map_pPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z29linemap_macro_expansion_map_pPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_last_position_in_text(pretty_print_info const*) -->
-    <elf-symbol name='_Z29pp_base_last_position_in_textPK17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z29pp_base_last_position_in_textPK17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_output_formatted_text(pretty_print_info*) -->
-    <elf-symbol name='_Z29pp_base_output_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z29pp_base_output_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_userdef_string_remove_type(cpp_ttype) -->
-    <elf-symbol name='_Z30cpp_userdef_string_remove_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z30cpp_userdef_string_remove_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_classify_diagnostic(diagnostic_context*, int, diagnostic_t, unsigned int) -->
-    <elf-symbol name='_Z30diagnostic_classify_diagnosticP18diagnostic_contexti12diagnostic_tj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z30diagnostic_classify_diagnosticP18diagnostic_contexti12diagnostic_tj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_set_info_translated(diagnostic_info*, char const*, __va_list_tag (*) [1], unsigned int, diagnostic_t) -->
-    <elf-symbol name='_Z30diagnostic_set_info_translatedP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z30diagnostic_set_info_translatedP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_internal_cleared_alloc_stat(unsigned long) -->
-    <elf-symbol name='_Z31ggc_internal_cleared_alloc_statm' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z31ggc_internal_cleared_alloc_statm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_unwind_toward_expansion(line_maps*, unsigned int, line_map const**) -->
-    <elf-symbol name='_Z31linemap_unwind_toward_expansionP9line_mapsjPPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z31linemap_unwind_toward_expansionP9line_mapsjPPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_set_line_maximum_length(pretty_print_info*, int) -->
-    <elf-symbol name='_Z31pp_base_set_line_maximum_lengthP17pretty_print_infoi' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z31pp_base_set_line_maximum_lengthP17pretty_print_infoi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_interpret_string_notranslate(cpp_reader*, cpp_string const*, unsigned long, cpp_string*, cpp_ttype) -->
-    <elf-symbol name='_Z32cpp_interpret_string_notranslateP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z32cpp_interpret_string_notranslateP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_stop_forcing_token_locations(cpp_reader*) -->
-    <elf-symbol name='_Z32cpp_stop_forcing_token_locationsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z32cpp_stop_forcing_token_locationsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- diagnostic_report_current_module(diagnostic_context*, unsigned int) -->
-    <elf-symbol name='_Z32diagnostic_report_current_moduleP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z32diagnostic_report_current_moduleP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_location_in_system_header_p(line_maps*, unsigned int) -->
-    <elf-symbol name='_Z35linemap_location_in_system_header_pP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z35linemap_location_in_system_header_pP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_position_for_line_and_column(line_map*, unsigned int, unsigned int) -->
-    <elf-symbol name='_Z36linemap_position_for_line_and_columnP8line_mapjj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z36linemap_position_for_line_and_columnP8line_mapjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_tracks_macro_expansion_locs_p(line_maps*) -->
-    <elf-symbol name='_Z37linemap_tracks_macro_expansion_locs_pP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z37linemap_tracks_macro_expansion_locs_pP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_location_from_macro_expansion_p(line_maps*, unsigned int) -->
-    <elf-symbol name='_Z39linemap_location_from_macro_expansion_pP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z39linemap_location_from_macro_expansion_pP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_base_remaining_character_count_for_line(pretty_print_info*) -->
-    <elf-symbol name='_Z42pp_base_remaining_character_count_for_lineP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z42pp_base_remaining_character_count_for_lineP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- error(char const*, ...) -->
-    <elf-symbol name='_Z5errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z5errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- sorry(char const*, ...) -->
-    <elf-symbol name='_Z5sorryPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z5sorryPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- inform(unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z6informjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z6informjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- notice(char const*, ...) -->
-    <elf-symbol name='_Z6noticePKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z6noticePKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- error_n(unsigned int, int, char const*, char const*, ...) -->
-    <elf-symbol name='_Z7error_njiPKcS0_z' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7error_njiPKcS0_z' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fnotice(_IO_FILE*, char const*, ...) -->
-    <elf-symbol name='_Z7fnoticeP8_IO_FILEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7fnoticeP8_IO_FILEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_load(ht*, ht_identifier**, unsigned int, unsigned int, bool) -->
-    <elf-symbol name='_Z7ht_loadP2htPP13ht_identifierjjb' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7ht_loadP2htPP13ht_identifierjjb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pedwarn(unsigned int, int, char const*, ...) -->
-    <elf-symbol name='_Z7pedwarnjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7pedwarnjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- warning(int, char const*, ...) -->
-    <elf-symbol name='_Z7warningiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z7warningiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_ideq(cpp_token const*, char const*) -->
-    <elf-symbol name='_Z8cpp_ideqPK9cpp_tokenPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8cpp_ideqPK9cpp_tokenPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- do_tlink(char**, char**) -->
-    <elf-symbol name='_Z8do_tlinkPPcS0_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8do_tlinkPPcS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- error_at(unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z8error_atjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8error_atjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ggc_free(void*) -->
-    <elf-symbol name='_Z8ggc_freePv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8ggc_freePv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_purge(ht*, int (*)(cpp_reader*, ht_identifier*, void const*), void const*) -->
-    <elf-symbol name='_Z8ht_purgeP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8ht_purgeP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- inform_n(unsigned int, int, char const*, char const*, ...) -->
-    <elf-symbol name='_Z8inform_njiPKcS0_z' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8inform_njiPKcS0_z' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- verbatim(char const*, ...) -->
-    <elf-symbol name='_Z8verbatimPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z8verbatimPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_errno(cpp_reader*, int, char const*) -->
-    <elf-symbol name='_Z9cpp_errnoP10cpp_readeriPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_errnoP10cpp_readeriPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_error(cpp_reader*, int, char const*, ...) -->
-    <elf-symbol name='_Z9cpp_errorP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_errorP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_undef(cpp_reader*, char const*) -->
-    <elf-symbol name='_Z9cpp_undefP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_undefP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_free(deps*) -->
-    <elf-symbol name='_Z9deps_freeP4deps' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_freeP4deps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_init() -->
-    <elf-symbol name='_Z9deps_initv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_initv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- deps_save(deps*, _IO_FILE*) -->
-    <elf-symbol name='_Z9deps_saveP4depsP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_saveP4depsP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dump_file(char const*, _IO_FILE*) -->
-    <elf-symbol name='_Z9dump_filePKcP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9dump_filePKcP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_create(unsigned int) -->
-    <elf-symbol name='_Z9ht_createj' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_createj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_forall(ht*, int (*)(cpp_reader*, ht_identifier*, void const*), void const*) -->
-    <elf-symbol name='_Z9ht_forallP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_forallP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ht_lookup(ht*, unsigned char const*, unsigned long, ht_lookup_option) -->
-    <elf-symbol name='_Z9ht_lookupP2htPKhm16ht_lookup_option' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_lookupP2htPKhm16ht_lookup_option' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- permerror(unsigned int, char const*, ...) -->
-    <elf-symbol name='_Z9permerrorjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9permerrorjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pp_printf(pretty_print_info*, char const*, ...) -->
-    <elf-symbol name='_Z9pp_printfP17pretty_print_infoPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z9pp_printfP17pretty_print_infoPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_fini -->
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __libc_csu_init -->
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_aligned_alloc -->
-    <elf-symbol name='_cpp_aligned_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_aligned_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_append_extend_buff -->
-    <elf-symbol name='_cpp_append_extend_buff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_append_extend_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_arguments_ok -->
-    <elf-symbol name='_cpp_arguments_ok' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_arguments_ok' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_backup_tokens_direct -->
-    <elf-symbol name='_cpp_backup_tokens_direct' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_backup_tokens_direct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_builtin_macro_text -->
-    <elf-symbol name='_cpp_builtin_macro_text' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_builtin_macro_text' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_clean_line -->
-    <elf-symbol name='_cpp_clean_line' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_clean_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_cleanup_files -->
-    <elf-symbol name='_cpp_cleanup_files' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_cleanup_files' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_compare_file_date -->
-    <elf-symbol name='_cpp_compare_file_date' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_compare_file_date' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_convert_input -->
-    <elf-symbol name='_cpp_convert_input' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_convert_input' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_copy_replacement_text -->
-    <elf-symbol name='_cpp_copy_replacement_text' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_copy_replacement_text' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_create_definition -->
-    <elf-symbol name='_cpp_create_definition' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_create_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_create_trad_definition -->
-    <elf-symbol name='_cpp_create_trad_definition' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_create_trad_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_default_encoding -->
-    <elf-symbol name='_cpp_default_encoding' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_default_encoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_define_builtin -->
-    <elf-symbol name='_cpp_define_builtin' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_define_builtin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_destroy_hashtable -->
-    <elf-symbol name='_cpp_destroy_hashtable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_destroy_hashtable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_destroy_iconv -->
-    <elf-symbol name='_cpp_destroy_iconv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_destroy_iconv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_do__Pragma -->
-    <elf-symbol name='_cpp_do__Pragma' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_do__Pragma' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_do_file_change -->
-    <elf-symbol name='_cpp_do_file_change' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_do_file_change' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_equiv_tokens -->
-    <elf-symbol name='_cpp_equiv_tokens' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_equiv_tokens' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_expand_op_stack -->
-    <elf-symbol name='_cpp_expand_op_stack' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_expand_op_stack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_expansions_different_trad -->
-    <elf-symbol name='_cpp_expansions_different_trad' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_expansions_different_trad' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_extend_buff -->
-    <elf-symbol name='_cpp_extend_buff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_extend_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_fake_include -->
-    <elf-symbol name='_cpp_fake_include' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_fake_include' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_find_failed -->
-    <elf-symbol name='_cpp_find_failed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_find_failed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_find_file -->
-    <elf-symbol name='_cpp_find_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_find_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_free_buff -->
-    <elf-symbol name='_cpp_free_buff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_free_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_free_definition -->
-    <elf-symbol name='_cpp_free_definition' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_free_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_get_buff -->
-    <elf-symbol name='_cpp_get_buff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_get_file_name -->
-    <elf-symbol name='_cpp_get_file_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_file_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_get_file_stat -->
-    <elf-symbol name='_cpp_get_file_stat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_file_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_get_fresh_line -->
-    <elf-symbol name='_cpp_get_fresh_line' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_fresh_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_handle_directive -->
-    <elf-symbol name='_cpp_handle_directive' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_handle_directive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_directives -->
-    <elf-symbol name='_cpp_init_directives' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_directives' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_files -->
-    <elf-symbol name='_cpp_init_files' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_files' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_hashtable -->
-    <elf-symbol name='_cpp_init_hashtable' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_hashtable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_internal_pragmas -->
-    <elf-symbol name='_cpp_init_internal_pragmas' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_internal_pragmas' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_lexer -->
-    <elf-symbol name='_cpp_init_lexer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_lexer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_init_tokenrun -->
-    <elf-symbol name='_cpp_init_tokenrun' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_tokenrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_interpret_identifier -->
-    <elf-symbol name='_cpp_interpret_identifier' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_interpret_identifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_lex_direct -->
-    <elf-symbol name='_cpp_lex_direct' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_direct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_lex_identifier -->
-    <elf-symbol name='_cpp_lex_identifier' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_identifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_lex_token -->
-    <elf-symbol name='_cpp_lex_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_mark_file_once_only -->
-    <elf-symbol name='_cpp_mark_file_once_only' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_mark_file_once_only' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_overlay_buffer -->
-    <elf-symbol name='_cpp_overlay_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_overlay_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_parse_expr -->
-    <elf-symbol name='_cpp_parse_expr' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_parse_expr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_pop_buffer -->
-    <elf-symbol name='_cpp_pop_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_pop_context -->
-    <elf-symbol name='_cpp_pop_context' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_pop_file_buffer -->
-    <elf-symbol name='_cpp_pop_file_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_file_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_process_line_notes -->
-    <elf-symbol name='_cpp_process_line_notes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_process_line_notes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_push_text_context -->
-    <elf-symbol name='_cpp_push_text_context' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_push_text_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_push_token_context -->
-    <elf-symbol name='_cpp_push_token_context' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_push_token_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_read_file_entries -->
-    <elf-symbol name='_cpp_read_file_entries' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_read_file_entries' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_read_logical_line_trad -->
-    <elf-symbol name='_cpp_read_logical_line_trad' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_read_logical_line_trad' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_release_buff -->
-    <elf-symbol name='_cpp_release_buff' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_release_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_remaining_tokens_num_in_context -->
-    <elf-symbol name='_cpp_remaining_tokens_num_in_context' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_remaining_tokens_num_in_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_remove_overlay -->
-    <elf-symbol name='_cpp_remove_overlay' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_remove_overlay' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_replacement_text_len -->
-    <elf-symbol name='_cpp_replacement_text_len' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_replacement_text_len' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_report_missing_guards -->
-    <elf-symbol name='_cpp_report_missing_guards' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_report_missing_guards' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_restore_pragma_names -->
-    <elf-symbol name='_cpp_restore_pragma_names' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_restore_pragma_names' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_save_file_entries -->
-    <elf-symbol name='_cpp_save_file_entries' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_file_entries' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_save_parameter -->
-    <elf-symbol name='_cpp_save_parameter' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_parameter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_save_pragma_names -->
-    <elf-symbol name='_cpp_save_pragma_names' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_pragma_names' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_scan_out_logical_line -->
-    <elf-symbol name='_cpp_scan_out_logical_line' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_scan_out_logical_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_skip_block_comment -->
-    <elf-symbol name='_cpp_skip_block_comment' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_skip_block_comment' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_stack_file -->
-    <elf-symbol name='_cpp_stack_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_stack_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_stack_include -->
-    <elf-symbol name='_cpp_stack_include' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_stack_include' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_temp_token -->
-    <elf-symbol name='_cpp_temp_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_temp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_test_assertion -->
-    <elf-symbol name='_cpp_test_assertion' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_test_assertion' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_unaligned_alloc -->
-    <elf-symbol name='_cpp_unaligned_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_unaligned_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_valid_ucn -->
-    <elf-symbol name='_cpp_valid_ucn' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_valid_ucn' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_warn_if_unused_macro -->
-    <elf-symbol name='_cpp_warn_if_unused_macro' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_warn_if_unused_macro' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _start -->
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ada_demangle -->
-    <elf-symbol name='ada_demangle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <!-- atexit -->
-    <elf-symbol name='atexit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ada_demangle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- buildargv -->
-    <elf-symbol name='buildargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='buildargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- choose_tmpdir -->
-    <elf-symbol name='choose_tmpdir' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='choose_tmpdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- concat -->
-    <elf-symbol name='concat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- concat_copy -->
-    <elf-symbol name='concat_copy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='concat_copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- concat_copy2 -->
-    <elf-symbol name='concat_copy2' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='concat_copy2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- concat_length -->
-    <elf-symbol name='concat_length' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='concat_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- countargv -->
-    <elf-symbol name='countargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='countargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle -->
-    <elf-symbol name='cplus_demangle' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_fill_ctor -->
-    <elf-symbol name='cplus_demangle_fill_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_fill_dtor -->
-    <elf-symbol name='cplus_demangle_fill_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_fill_extended_operator -->
-    <elf-symbol name='cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_fill_name -->
-    <elf-symbol name='cplus_demangle_fill_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_init_info -->
-    <elf-symbol name='cplus_demangle_init_info' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_init_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_mangled_name -->
-    <elf-symbol name='cplus_demangle_mangled_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_mangled_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_name_to_style -->
-    <elf-symbol name='cplus_demangle_name_to_style' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_name_to_style' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_opname -->
-    <elf-symbol name='cplus_demangle_opname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_opname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_print -->
-    <elf-symbol name='cplus_demangle_print' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_print_callback -->
-    <elf-symbol name='cplus_demangle_print_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_print_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_set_style -->
-    <elf-symbol name='cplus_demangle_set_style' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_set_style' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_type -->
-    <elf-symbol name='cplus_demangle_type' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_v3 -->
-    <elf-symbol name='cplus_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_v3_callback -->
-    <elf-symbol name='cplus_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_mangle_opname -->
-    <elf-symbol name='cplus_mangle_opname' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_mangle_opname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cpp_named_operator2name -->
-    <elf-symbol name='cpp_named_operator2name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cpp_named_operator2name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dos_lbasename -->
-    <elf-symbol name='dos_lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dos_lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- dupargv -->
-    <elf-symbol name='dupargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dupargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- expandargv -->
-    <elf-symbol name='expandargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='expandargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fdopen_unlocked -->
-    <elf-symbol name='fdopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='fdopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- filename_cmp -->
-    <elf-symbol name='filename_cmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='filename_cmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- filename_ncmp -->
-    <elf-symbol name='filename_ncmp' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='filename_ncmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- fopen_unlocked -->
-    <elf-symbol name='fopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='fopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- freeargv -->
-    <elf-symbol name='freeargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='freeargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- freopen_unlocked -->
-    <elf-symbol name='freopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='freopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- getpwd -->
-    <elf-symbol name='getpwd' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='getpwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- hex_init -->
-    <elf-symbol name='hex_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='hex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_clear_slot -->
-    <elf-symbol name='htab_clear_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_clear_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_collisions -->
-    <elf-symbol name='htab_collisions' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_collisions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_create -->
-    <elf-symbol name='htab_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_create_alloc -->
-    <elf-symbol name='htab_create_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_create_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_create_alloc_ex -->
-    <elf-symbol name='htab_create_alloc_ex' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_create_alloc_ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_create_typed_alloc -->
-    <elf-symbol name='htab_create_typed_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_create_typed_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_delete -->
-    <elf-symbol name='htab_delete' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_elements -->
-    <elf-symbol name='htab_elements' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_elements' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_empty -->
-    <elf-symbol name='htab_empty' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_find -->
-    <elf-symbol name='htab_find' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_find_slot -->
-    <elf-symbol name='htab_find_slot' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_find_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_find_slot_with_hash -->
-    <elf-symbol name='htab_find_slot_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_find_slot_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_find_with_hash -->
-    <elf-symbol name='htab_find_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_find_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_hash_string -->
-    <elf-symbol name='htab_hash_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_hash_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_remove_elt -->
-    <elf-symbol name='htab_remove_elt' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_remove_elt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_remove_elt_with_hash -->
-    <elf-symbol name='htab_remove_elt_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_remove_elt_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_set_functions_ex -->
-    <elf-symbol name='htab_set_functions_ex' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_set_functions_ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_size -->
-    <elf-symbol name='htab_size' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_traverse -->
-    <elf-symbol name='htab_traverse' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_traverse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_traverse_noresize -->
-    <elf-symbol name='htab_traverse_noresize' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_traverse_noresize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_try_create -->
-    <elf-symbol name='htab_try_create' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_try_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- is_gnu_v3_mangled_ctor -->
-    <elf-symbol name='is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- is_gnu_v3_mangled_dtor -->
-    <elf-symbol name='is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- iterative_hash -->
-    <elf-symbol name='iterative_hash' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='iterative_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- java_demangle_v3 -->
-    <elf-symbol name='java_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='java_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- java_demangle_v3_callback -->
-    <elf-symbol name='java_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='java_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lbasename -->
-    <elf-symbol name='lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_add_macro_token -->
-    <elf-symbol name='linemap_add_macro_token' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='linemap_add_macro_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_enter_macro -->
-    <elf-symbol name='linemap_enter_macro' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='linemap_enter_macro' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_get_expansion_filename -->
-    <elf-symbol name='linemap_get_expansion_filename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='linemap_get_expansion_filename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- linemap_get_expansion_line -->
-    <elf-symbol name='linemap_get_expansion_line' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='linemap_get_expansion_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- main -->
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- make_temp_file -->
-    <elf-symbol name='make_temp_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='make_temp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_buffer -->
-    <elf-symbol name='md5_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_finish_ctx -->
-    <elf-symbol name='md5_finish_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_finish_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_init_ctx -->
-    <elf-symbol name='md5_init_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_init_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_process_block -->
-    <elf-symbol name='md5_process_block' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_process_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_process_bytes -->
-    <elf-symbol name='md5_process_bytes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_process_bytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_read_ctx -->
-    <elf-symbol name='md5_read_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_read_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- md5_stream -->
-    <elf-symbol name='md5_stream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='md5_stream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_free -->
-    <elf-symbol name='pex_free' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_get_status -->
-    <elf-symbol name='pex_get_status' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_get_status' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_get_times -->
-    <elf-symbol name='pex_get_times' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_get_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_init -->
-    <elf-symbol name='pex_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_init_common -->
-    <elf-symbol name='pex_init_common' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_init_common' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_input_file -->
-    <elf-symbol name='pex_input_file' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_input_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_input_pipe -->
-    <elf-symbol name='pex_input_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_input_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_read_err -->
-    <elf-symbol name='pex_read_err' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_read_err' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_read_output -->
-    <elf-symbol name='pex_read_output' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_read_output' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_run -->
-    <elf-symbol name='pex_run' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pex_run_in_environment -->
-    <elf-symbol name='pex_run_in_environment' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pex_run_in_environment' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- reconcat -->
-    <elf-symbol name='reconcat' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='reconcat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- set_cplus_marker_for_demangling -->
-    <elf-symbol name='set_cplus_marker_for_demangling' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='set_cplus_marker_for_demangling' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- unix_lbasename -->
-    <elf-symbol name='unix_lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='unix_lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- unlink_if_ordinary -->
-    <elf-symbol name='unlink_if_ordinary' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='unlink_if_ordinary' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- unlock_std_streams -->
-    <elf-symbol name='unlock_std_streams' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='unlock_std_streams' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- unlock_stream -->
-    <elf-symbol name='unlock_stream' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='unlock_stream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- writeargv -->
-    <elf-symbol name='writeargv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='writeargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xcalloc -->
-    <elf-symbol name='xcalloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xcalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xexit -->
-    <elf-symbol name='xexit' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xexit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xmalloc -->
-    <elf-symbol name='xmalloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xmalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xmalloc_failed -->
-    <elf-symbol name='xmalloc_failed' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xmalloc_failed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xmalloc_set_program_name -->
-    <elf-symbol name='xmalloc_set_program_name' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xmalloc_set_program_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xmemdup -->
-    <elf-symbol name='xmemdup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xmemdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xrealloc -->
-    <elf-symbol name='xrealloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xrealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xstrdup -->
-    <elf-symbol name='xstrdup' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xstrdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- xstrerror -->
-    <elf-symbol name='xstrerror' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='xstrerror' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- _IO_stdin_used -->
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <!-- __DTOR_END__ -->
-    <elf-symbol name='__DTOR_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <!-- __TMC_END__ -->
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __environ@@GLIBC_2.2.5 -->
-    <elf-symbol name='__environ@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__environ@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _cpp_trigraph_map -->
-    <elf-symbol name='_cpp_trigraph_map' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_cpp_trigraph_map' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _hex_value -->
-    <elf-symbol name='_hex_value' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_hex_value' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _sch_istable -->
-    <elf-symbol name='_sch_istable' size='512' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_sch_istable' size='512' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _sch_tolower -->
-    <elf-symbol name='_sch_tolower' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_sch_tolower' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _sch_toupper -->
-    <elf-symbol name='_sch_toupper' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_sch_toupper' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _xexit_cleanup -->
-    <elf-symbol name='_xexit_cleanup' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_xexit_cleanup' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- bug_report_url -->
-    <elf-symbol name='bug_report_url' size='31' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='bug_report_url' size='31' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- c_file_name -->
-    <elf-symbol name='c_file_name' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='c_file_name' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- close_quote -->
-    <elf-symbol name='close_quote' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='close_quote' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_builtin_types -->
-    <elf-symbol name='cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- cplus_demangle_operators -->
-    <elf-symbol name='cplus_demangle_operators' size='1392' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_operators' size='1392' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- current_demangling_style -->
-    <elf-symbol name='current_demangling_style' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='current_demangling_style' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- debug -->
-    <elf-symbol name='debug' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='debug' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- do_collecting -->
-    <elf-symbol name='do_collecting' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='do_collecting' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- environ@@GLIBC_2.2.5 -->
-    <elf-symbol name='environ@@GLIBC_2.2.5' size='8' type='object-type' binding='weak-binding' alias='__environ@@GLIBC_2.2.5' is-defined='yes'/>
+    <elf-symbol name='environ@@GLIBC_2.2.5' size='8' type='object-type' binding='weak-binding' visibility='default-visibility' alias='__environ@@GLIBC_2.2.5' is-defined='yes'/>
     <!-- file_stack -->
-    <elf-symbol name='file_stack' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='file_stack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- file_stack_obstack -->
-    <elf-symbol name='file_stack_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='file_stack_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- funcs -->
-    <elf-symbol name='funcs' size='72' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='funcs' size='72' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- global_dc -->
-    <elf-symbol name='global_dc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='global_dc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- helpflag -->
-    <elf-symbol name='helpflag' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='helpflag' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_eq_pointer -->
-    <elf-symbol name='htab_eq_pointer' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_eq_pointer' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- htab_hash_pointer -->
-    <elf-symbol name='htab_hash_pointer' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='htab_hash_pointer' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- identifier_to_locale_alloc -->
-    <elf-symbol name='identifier_to_locale_alloc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='identifier_to_locale_alloc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- identifier_to_locale_free -->
-    <elf-symbol name='identifier_to_locale_free' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='identifier_to_locale_free' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- input_location -->
-    <elf-symbol name='input_location' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='input_location' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- lderrout -->
-    <elf-symbol name='lderrout' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='lderrout' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- ldout -->
-    <elf-symbol name='ldout' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ldout' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- libiberty_concat_ptr -->
-    <elf-symbol name='libiberty_concat_ptr' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='libiberty_concat_ptr' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- libiberty_demanglers -->
-    <elf-symbol name='libiberty_demanglers' size='264' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='libiberty_demanglers' size='264' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- line_table -->
-    <elf-symbol name='line_table' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='line_table' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- locale_encoding -->
-    <elf-symbol name='locale_encoding' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='locale_encoding' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- locale_utf8 -->
-    <elf-symbol name='locale_utf8' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='locale_utf8' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- no_demangle -->
-    <elf-symbol name='no_demangle' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='no_demangle' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- num_expanded_macros_counter -->
-    <elf-symbol name='num_expanded_macros_counter' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='num_expanded_macros_counter' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- num_macro_tokens_counter -->
-    <elf-symbol name='num_macro_tokens_counter' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='num_macro_tokens_counter' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- open_quote -->
-    <elf-symbol name='open_quote' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='open_quote' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- pkgversion_string -->
-    <elf-symbol name='pkgversion_string' size='7' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='pkgversion_string' size='7' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- progname -->
-    <elf-symbol name='progname' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='progname' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- rtl_zone -->
-    <elf-symbol name='rtl_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='rtl_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- stderr@@GLIBC_2.2.5 -->
-    <elf-symbol name='stderr@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='stderr@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- stdin@@GLIBC_2.2.5 -->
-    <elf-symbol name='stdin@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='stdin@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- stdout@@GLIBC_2.2.5 -->
-    <elf-symbol name='stdout@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='stdout@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- symbol_stack -->
-    <elf-symbol name='symbol_stack' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='symbol_stack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- symbol_stack_obstack -->
-    <elf-symbol name='symbol_stack_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='symbol_stack_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- temporary_firstobj -->
-    <elf-symbol name='temporary_firstobj' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='temporary_firstobj' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- temporary_obstack -->
-    <elf-symbol name='temporary_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='temporary_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tree_id_zone -->
-    <elf-symbol name='tree_id_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tree_id_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- tree_zone -->
-    <elf-symbol name='tree_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='tree_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- version_string -->
-    <elf-symbol name='version_string' size='6' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='version_string' size='6' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- vflag -->
-    <elf-symbol name='vflag' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='vflag' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/collect2.c' language='LANG_C_plus_plus'>
 
index 97b787d8332017938b98fc40481b82bdb1aa0b58..ae55a67cf49313f7452af3ad24f3564cd8d2ab6d 100644 (file)
@@ -4,17 +4,17 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- __foo -->
-    <elf-symbol name='__foo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__foo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- __foo__ -->
-    <elf-symbol name='__foo__' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__foo__' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- foo -->
-    <elf-symbol name='foo' type='func-type' binding='weak-binding' alias='foo__,__foo__,__foo' is-defined='yes'/>
+    <elf-symbol name='foo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='foo__,__foo__,__foo' is-defined='yes'/>
     <!-- foo__ -->
-    <elf-symbol name='foo__' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='foo__' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test3.c' language='LANG_C89'>
     <!-- void -->
index 6aac7af6a5c61f5dcda930080d17e1c2fc6fdd30..f9207381bdd022540ada22296860b75f66e9d725 100644 (file)
@@ -4,7 +4,7 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- cpy -->
-    <elf-symbol name='cpy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test4.c' language='LANG_C89'>
     <!-- char -->
index c15358aa0a7f1363c996ce4752008727aac53f6a..04786d534d8bf5ed7d12a0df6e8c41a875927101 100644 (file)
@@ -1,7 +1,7 @@
 <abi-corpus architecture='elf-amd-x86_64'>
   <elf-function-symbols>
     <!-- bar(void*) -->
-    <elf-symbol name='_Z3barPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test.cc' language='LANG_C_plus_plus'>
     <!-- void -->
index 0317e8cd007e93267cfae92a0c871abd83c8c65c..0a6dc70f5d2b1d9d11dd09389a313751fa861303 100644 (file)
@@ -7,21 +7,21 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- bar() -->
-    <elf-symbol name='_Z3barv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- bleh() -->
-    <elf-symbol name='_Z4blehv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z4blehv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- B::foo() -->
-    <elf-symbol name='_ZN1B3fooEv' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN1B3fooEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
     <!-- C<int>::bar -->
-    <elf-symbol name='_ZN1CIiE3barE' size='4' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN1CIiE3barE' size='4' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- B::foo()::a -->
-    <elf-symbol name='_ZZN1B3fooEvE1a' size='4' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZZN1B3fooEvE1a' size='4' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test6.cc' language='LANG_C_plus_plus'>
     <!-- struct B -->
index 964994054cc438875d5546525c9badd2e369c31b..9a4cae825ddb42c9c80f6e88f67825f07b46f5cc 100644 (file)
@@ -1,7 +1,7 @@
 <abi-corpus architecture='elf-amd-x86_64'>
   <elf-function-symbols>
     <!-- foo(S&) -->
-    <elf-symbol name='_Z3fooR1S' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooR1S' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test7.cc' language='LANG_C_plus_plus'>
     <!-- int -->
index 90583607559caf3f98a10417488d89dfbec98894..2a962bb4f4305906031058e77dca3b01b41f886e 100644 (file)
@@ -7,11 +7,11 @@
   </elf-needed>
   <elf-function-symbols>
     <!-- S::foo() const -->
-    <elf-symbol name='_ZNK1S3fooEv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK1S3fooEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _fini -->
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
     <!-- _init -->
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test8-qualified-this-pointer.cc' language='LANG_C_plus_plus'>
     <!-- struct S -->
index f903832ecf090ffbce2db1a4382dcd039182d03f..77c37454649a09a435edc2be7c2d52abcecc48f0 100644 (file)
@@ -6,10 +6,10 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z4emitRSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z4emitRSsS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z4emitRSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z4emitRSsS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test23-first-tu.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 25d509e20dec93bb67b299f8d71a4dfb66571e0a..69174caa6c61ad9d838a7a1982a5a801557cad82 100644 (file)
@@ -4,12 +4,12 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 3ddbe8467ba8c88c976c05ea37f296e031b12d9e..3a9752e76c403a64667e2f9a5c0781fd91aceda5 100644 (file)
@@ -4,12 +4,12 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index e51de1a75d6fc22f926aa3a86eb66456340547ec..865c5c90bb1cf104ffe6524b1507964c7497f30b 100644 (file)
@@ -6,23 +6,21 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN3ns03barEiz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3ns03bazERi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3ns03fooEPcl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3ns04bar2ERNS_1EE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3ns04baz2ERi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03barEiz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03bazERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns03fooEPcl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns04bar2ERNS_1EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3ns04baz2ERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dso_handle' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='global' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='global' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test0.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='ns0'>
index ebe2f1f7141ffa2f765ca878fef8b9a7404f7cf5..d4c977f7aa41881c970e85ee9e2404d2c80a0b6e 100644 (file)
@@ -6,35 +6,33 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3fooR2s0' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN2b0C1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN2b0C2Ev' type='func-type' binding='weak-binding' alias='_ZN2b0C1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN2b1C1Ev' type='func-type' binding='weak-binding' alias='_ZN2b1C2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN2b1C2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN2s07mem_funEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN2s0C1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN2s0D1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooR2s0' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN2b0C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN2b0C2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN2b0C1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN2b1C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN2b1C2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN2b1C2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN2s07mem_funEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN2s0C1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN2s0D1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI2b0' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI2b1' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI2s0' size='56' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS2b0' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS2b1' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS2s0' size='4' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTT2s0' size='8' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV2s0' size='32' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dso_handle' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI2b0' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI2b1' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI2s0' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS2b0' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS2b1' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS2s0' size='4' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTT2s0' size='8' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV2s0' size='32' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE@@CXXABI_1.3' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test1.cc' language='LANG_C_plus_plus'>
     <class-decl name='b0' size-in-bits='128' is-struct='yes' visibility='default' filepath='/home/dodji/git/libabigail/dwarf/tests/data/test-read-dwarf/test1.cc' line='1' column='1' id='type-id-1'>
index dc0756c425a92992d1870ccff1485e888f27c1c1..3755e14d90d58f9e4e629fe57c9d8a3625e5e000 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN5boost10filesystem10is_symlinkENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC1ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC2ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem11file_statusC1ENS0_9file_typeENS0_5permsE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem11file_statusC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcRSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKwS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchERKNS0_15directory_entryERSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSbIwSt11char_traitsIwESaIwEERT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSsRT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchIcSsEEvRKPT_RT0_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12copy_symlinkERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12current_pathEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12status_knownENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12type_presentENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12windows_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem13portable_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem14copy_directoryERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem14symlink_statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entry16replace_filenameERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entry6assignERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem15directory_entryC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem15directory_entryD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15is_regular_fileENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathENS_6system10error_codeE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathES6_NS_6system10error_codeE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem16filesystem_errorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18create_directoriesERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC1ERKNS0_4pathE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem18directory_iteratorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem18directory_iteratorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18portable_file_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem19permissions_presentENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem19portable_posix_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem22codecvt_error_categoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem23portable_directory_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path11m_normalizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path15remove_filenameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path17replace_extensionERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_decrementERNS1_8iteratorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_incrementERNS1_8iteratorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path27m_erase_redundant_separatorEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path28m_append_separator_if_neededEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path5imbueERKSt6locale' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path7codecvtEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iterator9decrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iterator9incrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC1ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4path8iteratorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2ERKS2_' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4path8iteratorC1ERKS2_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4path8iteratorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1EPKc' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC2EPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1ERKS1_' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC2ERKS1_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1ERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1IPKcEET_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC1ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKSs' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC1ERKSs' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2IPKcEET_S5_' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC1IPKcEET_S5_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathC1ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem4pathD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSIPcEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSISsEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathdVEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathdVERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail10equivalentERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail10remove_allERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11lex_compareENS0_4path8iteratorES3_S3_S3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11permissionsERKNS0_4pathENS0_5permsEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11resize_fileERKNS0_4pathEmPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11unique_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12copy_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12initial_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12read_symlinkERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail13dir_itr_closeERPvS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14copy_directoryERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14create_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14symlink_statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15hard_link_countERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathElPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15system_completeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail16create_directoryERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail16create_hard_linkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18create_directoriesERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet15get_octet_countEh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet20get_cont_octet_countEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail19temp_directory_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail24create_directory_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_constructERNS0_18directory_iteratorERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_incrementERNS0_18directory_iteratorEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail32possible_large_file_size_supportEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail4copyERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail5spaceERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6removeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6renameERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail8is_emptyERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9canonicalERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9copy_fileERKNS0_4pathES4_NS0_11copy_optionEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9file_sizeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9mode_castENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6nativeERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem8absoluteERKNS0_4pathES3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem9copy_fileERKNS0_4pathES3_NS0_11copy_optionERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemanENS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemcoENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemdvERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemeqERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemneERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemoRERNS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemorENS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE4swapERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetIS3_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1IS3_EEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1IS3_EEPT_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE4swapERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1IS3_EEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1IS3_EEPT_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12noncopyable_11noncopyableC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost12noncopyable_11noncopyableC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12noncopyable_11noncopyableC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcEC1EPc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcEC2EPc' type='func-type' binding='weak-binding' alias='_ZN5boost12scoped_arrayIcEC1EPc' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcED1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost12scoped_arrayIcED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwEC1EPw' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwEC2EPw' type='func-type' binding='weak-binding' alias='_ZN5boost12scoped_arrayIwEC1EPw' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwED1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost12scoped_arrayIwED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem16filesystem_error5m_impEEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem6detail11dir_itr_impEEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20checked_array_deleteIcEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20checked_array_deleteIwEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem18directory_iteratorEEENT_9referenceERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem4path8iteratorEEENT_9referenceERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem18directory_iteratorES3_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem4path8iteratorES4_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9decrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem18directory_iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_count4swapERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail12shared_countC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC1INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' alias='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC1INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' alias='_ZN5boost6detail12shared_countC1INS_10filesystem6detail11dir_itr_impEEEPT_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail12shared_countD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base12weak_releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base7destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base7releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail15sp_counted_baseC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail15sp_counted_baseD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE7disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC1EPS4_' type='func-type' binding='weak-binding' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC1EPS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC2EPS4_' type='func-type' binding='weak-binding' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC1EPS4_' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem16filesystem_error5m_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem6detail11dir_itr_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23atomic_exchange_and_addEPii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRKNS_10filesystem4pathEPS4_E5applyES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRNS_10filesystem15directory_entryEPS3_E5applyES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail26sp_enable_shared_from_thisEz' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code21unspecified_bool_trueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code6assignEiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC1EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' alias='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6system10error_codeC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC1ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC1EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' alias='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC2ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' alias='_ZN5boost6system12system_errorC1ENS0_10error_codeERKSs' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorD1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6system12system_errorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6system14error_categoryC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryD2Ev' type='func-type' binding='weak-binding' alias='_ZN5boost6system14error_categoryD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system15error_conditionC1EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' alias='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6systemeqERKNS0_15error_conditionES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem6detail11dir_itr_impES3_EEbRKNS_10shared_ptrIT_EERKNS4_IT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boostneINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boostneINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC1ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC2ERKS2_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC1ERKS2_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC1ERKS1_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem11file_status11permissionsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem11file_status4typeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry12m_get_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry20m_get_symlink_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry4pathEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem16filesystem_error4whatEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator11dereferenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator5equalERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path11is_absoluteEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path11parent_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path13relative_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path14root_directoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path17m_parent_path_endEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path18has_root_directoryEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path3endEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path4stemEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5beginEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5c_strEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path6nativeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path6stringEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7compareERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7wstringERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7wstringEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8filenameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8iterator11dereferenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8iterator5equalERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9extensionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9root_nameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9root_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet10do_unshiftER11__mbstate_tPcS5_RS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet11do_encodingEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet13do_max_lengthEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet16do_always_noconvEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet21invalid_leading_octetEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24get_cont_octet_out_countEw' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24invalid_continuing_octetEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet5do_inER11__mbstate_tPKcS6_RS6_PwS8_RS8_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet6do_outER11__mbstate_tPKwS6_RS6_PcS8_RS8_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet9do_lengthER11__mbstate_tPKcS6_m' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost12scoped_arrayIcE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost12scoped_arrayIwE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code5valueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code7messageEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code8categoryEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_codecvPFvvEEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system12system_error4whatEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category10equivalentERKNS0_10error_codeEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category10equivalentEiRKNS0_15error_conditionE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category23default_error_conditionEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_categoryeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEmiEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE2inERS0_PKcS4_RS4_PwS6_RS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE3outERS0_PKwS4_RS4_PcS6_RS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs16_S_construct_auxIPKcEEPcT_S3_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs16_S_construct_auxIPcEES0_T_S1_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendIPKcEERSsT_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendIPcEERSsT_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' alias='_ZNSsC2IPcEET_S1_RKSaIcE' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' alias='_ZNSsC1IPKcEET_S2_RKSaIcE' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE7compareEPKcS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE3maxEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryIPcENSt15iterator_traitsIT_E17iterator_categoryERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem16filesystem_error5m_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem6detail11dir_itr_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5boost10filesystem16filesystem_error5m_impEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5boost10filesystem6detail11dir_itr_impEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcEbRKSaIT_ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStneIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem10is_symlinkENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC1ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC2ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem11file_statusC1ENS0_9file_typeENS0_5permsE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem11file_statusC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcRSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKwS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchERKNS0_15directory_entryERSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSbIwSt11char_traitsIwESaIwEERT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSsRT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchIcSsEEvRKPT_RT0_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12copy_symlinkERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12current_pathEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12status_knownENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12type_presentENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12windows_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem13portable_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem14copy_directoryERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem14symlink_statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entry16replace_filenameERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entry6assignERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem15directory_entryC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem15directory_entryD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15is_regular_fileENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathENS_6system10error_codeE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_errorC1ERKSsRKNS0_4pathES6_NS_6system10error_codeE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem16filesystem_errorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18create_directoriesERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC1ERKNS0_4pathE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem18directory_iteratorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem18directory_iteratorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18portable_file_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem19permissions_presentENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem19portable_posix_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem22codecvt_error_categoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem23portable_directory_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path11m_normalizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path15remove_filenameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path17replace_extensionERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_decrementERNS1_8iteratorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_incrementERNS1_8iteratorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path27m_erase_redundant_separatorEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path28m_append_separator_if_neededEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path5imbueERKSt6locale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path7codecvtEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iterator9decrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iterator9incrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC1ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4path8iteratorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4path8iteratorC1ERKS2_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4path8iteratorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC2ERKS1_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1IPKcEET_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC1ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC1ERKSs' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2IPKcEET_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC1IPKcEET_S5_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathC1ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem4pathD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSIPcEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSISsEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathdVEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathdVERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail10equivalentERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail10remove_allERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11lex_compareENS0_4path8iteratorES3_S3_S3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11permissionsERKNS0_4pathENS0_5permsEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11resize_fileERKNS0_4pathEmPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11unique_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12copy_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12initial_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12read_symlinkERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail13dir_itr_closeERPvS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14copy_directoryERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14create_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14symlink_statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15hard_link_countERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathElPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15system_completeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail16create_directoryERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail16create_hard_linkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18create_directoriesERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet15get_octet_countEh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet20get_cont_octet_countEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail19temp_directory_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail24create_directory_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_constructERNS0_18directory_iteratorERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_incrementERNS0_18directory_iteratorEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail32possible_large_file_size_supportEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail4copyERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail5spaceERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6removeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6renameERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail8is_emptyERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9canonicalERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9copy_fileERKNS0_4pathES4_NS0_11copy_optionEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9file_sizeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9mode_castENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6nativeERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem8absoluteERKNS0_4pathES3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem9copy_fileERKNS0_4pathES3_NS0_11copy_optionERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemanENS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemcoENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemdvERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemeqERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemneERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemoRERNS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemorENS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE4swapERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetIS3_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC1IS3_EEPT_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE4swapERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC1IS3_EEPT_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12noncopyable_11noncopyableC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost12noncopyable_11noncopyableC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12noncopyable_11noncopyableC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcEC1EPc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcEC2EPc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost12scoped_arrayIcEC1EPc' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost12scoped_arrayIcED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwEC1EPw' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwEC2EPw' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost12scoped_arrayIwEC1EPw' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost12scoped_arrayIwED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem16filesystem_error5m_impEEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem6detail11dir_itr_impEEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20checked_array_deleteIcEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20checked_array_deleteIwEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem18directory_iteratorEEENT_9referenceERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem4path8iteratorEEENT_9referenceERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem18directory_iteratorES3_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem4path8iteratorES4_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9decrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem18directory_iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_count4swapERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail12shared_countC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC1INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC1INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail12shared_countC1INS_10filesystem6detail11dir_itr_impEEEPT_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail12shared_countD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base12weak_releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base7destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base7releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail15sp_counted_baseC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail15sp_counted_baseD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE7disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC1EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC1EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC2EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC1EPS4_' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem16filesystem_error5m_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem6detail11dir_itr_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23atomic_exchange_and_addEPii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRKNS_10filesystem4pathEPS4_E5applyES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRNS_10filesystem15directory_entryEPS3_E5applyES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail26sp_enable_shared_from_thisEz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code21unspecified_bool_trueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code6assignEiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC1EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system10error_codeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC1ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC1EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC2ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system12system_errorC1ENS0_10error_codeERKSs' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system12system_errorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system14error_categoryC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system14error_categoryD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system15error_conditionC1EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6systemeqERKNS0_15error_conditionES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem6detail11dir_itr_impES3_EEbRKNS_10shared_ptrIT_EERKNS4_IT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boostneINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boostneINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC1ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC1ERKS2_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC1ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem11file_status11permissionsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem11file_status4typeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry12m_get_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry20m_get_symlink_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry4pathEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem16filesystem_error4whatEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator11dereferenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator5equalERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path11is_absoluteEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path11parent_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path13relative_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path14root_directoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path17m_parent_path_endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path18has_root_directoryEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path3endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path4stemEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5beginEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5c_strEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path6nativeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path6stringEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7compareERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7wstringERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7wstringEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8filenameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8iterator11dereferenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8iterator5equalERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9extensionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9root_nameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9root_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet10do_unshiftER11__mbstate_tPcS5_RS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet11do_encodingEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet13do_max_lengthEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet16do_always_noconvEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet21invalid_leading_octetEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24get_cont_octet_out_countEw' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24invalid_continuing_octetEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet5do_inER11__mbstate_tPKcS6_RS6_PwS8_RS8_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet6do_outER11__mbstate_tPKwS6_RS6_PcS8_RS8_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet9do_lengthER11__mbstate_tPKcS6_m' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost12scoped_arrayIcE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost12scoped_arrayIwE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code5valueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code7messageEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code8categoryEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_codecvPFvvEEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system12system_error4whatEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category10equivalentERKNS0_10error_codeEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category10equivalentEiRKNS0_15error_conditionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category23default_error_conditionEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_categoryeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEmiEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE2inERS0_PKcS4_RS4_PwS6_RS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE3outERS0_PKwS4_RS4_PcS6_RS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs16_S_construct_auxIPKcEEPcT_S3_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs16_S_construct_auxIPcEES0_T_S1_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendIPKcEERSsT_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendIPcEERSsT_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2IPcEET_S1_RKSaIcE' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1IPKcEET_S2_RKSaIcE' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE7compareEPKcS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE3maxEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryIPcENSt15iterator_traitsIT_E17iterator_categoryERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem16filesystem_error5m_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem6detail11dir_itr_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5boost10filesystem16filesystem_error5m_impEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5boost10filesystem6detail11dir_itr_impEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcEbRKSaIT_ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStneIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZTIN5boost10filesystem16filesystem_errorE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost10filesystem6detail18utf8_codecvt_facetE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost12noncopyable_11noncopyableE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail15sp_counted_baseE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6system12system_errorE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6system14error_categoryE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost10filesystem16filesystem_errorE' size='39' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost10filesystem6detail18utf8_codecvt_facetE' size='48' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost12noncopyable_11noncopyableE' size='36' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail15sp_counted_baseE' size='33' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='77' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='73' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6system12system_errorE' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6system14error_categoryE' size='32' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost10filesystem16filesystem_errorE' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost10filesystem6detail18utf8_codecvt_facetE' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail15sp_counted_baseE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6system12system_errorE' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6system14error_categoryE' size='72' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost10filesystem16filesystem_errorE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost10filesystem6detail18utf8_codecvt_facetE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost12noncopyable_11noncopyableE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail15sp_counted_baseE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6system12system_errorE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6system14error_categoryE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost10filesystem16filesystem_errorE' size='39' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost10filesystem6detail18utf8_codecvt_facetE' size='48' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost12noncopyable_11noncopyableE' size='36' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail15sp_counted_baseE' size='33' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='77' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='73' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6system12system_errorE' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6system14error_categoryE' size='32' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost10filesystem16filesystem_errorE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost10filesystem6detail18utf8_codecvt_facetE' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail15sp_counted_baseE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6system12system_errorE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6system14error_categoryE' size='72' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/codecvt_error_category.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 853f7c6219705577ac7a13dd52df282807b48f4f..8639c24fe03d29fe397eb56ee7af3c88c0d24b9c 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN10mongoutils3str6streamC1Ev' type='func-type' binding='weak-binding' alias='_ZN10mongoutils3str6streamC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamD1Ev' type='func-type' binding='weak-binding' alias='_ZN10mongoutils3str6streamD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA42_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA50_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIiEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10AtomicWordIjE16fetchAndSubtractEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10AtomicWordIjE16subtractAndFetchEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC1EPKc' type='func-type' binding='weak-binding' alias='_ZN5mongo10StringDataC2EPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC1ERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo10StringDataC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC2ERKSs' type='func-type' binding='weak-binding' alias='_ZN5mongo10StringDataC1ERKSs' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBException10addContextERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBExceptionC1ERKSsi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBExceptionC2ERKSsi' type='func-type' binding='weak-binding' alias='_ZN5mongo11DBExceptionC1ERKSsi' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBExceptionD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBExceptionD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo11DBExceptionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11DBExceptionD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE12reserveBytesEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE13appendNumImplIcEEvT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE13appendNumImplIiEEvT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE15grow_reallocateEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE18claimReservedBytesEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE3bufEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4growEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4killEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4skipEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendBufEPKvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendNumEc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendNumEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendStrENS_10StringDataEb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC1Ei' type='func-type' binding='weak-binding' alias='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12LittleEndianIcEC1Ec' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12LittleEndianIcEC2Ec' type='func-type' binding='weak-binding' alias='_ZN5mongo12LittleEndianIcEC1Ec' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12LittleEndianIiEC1Ei' type='func-type' binding='weak-binding' alias='_ZN5mongo12LittleEndianIiEC2Ei' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12LittleEndianIiEC2Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferC1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo12SharedBufferC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo12SharedBufferD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ConstDataViewC1EPKc' type='func-type' binding='weak-binding' alias='_ZN5mongo13ConstDataViewC2EPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ConstDataViewC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ExceptionInfoC1ERKSsi' type='func-type' binding='weak-binding' alias='_ZN5mongo13ExceptionInfoC2ERKSsi' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ExceptionInfoC2ERKSsi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ExceptionInfoD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo13ExceptionInfoD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13ExceptionInfoD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder11appendArrayENS_10StringDataERKNS_7BSONObjE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder4doneEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder5_doneEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEPKci' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendISsEERS0_NS_10StringDataERKSt6vectorIT_SaIS5_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilder6numStrEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilderC1Ei' type='func-type' binding='weak-binding' alias='_ZN5mongo14BSONObjBuilderC2Ei' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilderC2Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilderD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo14BSONObjBuilderD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14BSONObjBuilderD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo14addSASLOptionsEPNS_17optionenvironment13OptionSectionE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo15BSONSizeTracker3gotEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo15tagLittleEndianIcEENS_12LittleEndianIT_EES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo15tagLittleEndianIiEENS_12LittleEndianIT_EES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16SASLGlobalParamsC1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo16SASLGlobalParamsC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16SASLGlobalParamsC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16SASLGlobalParamsD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo16SASLGlobalParamsD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16SASLGlobalParamsD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator4FreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator6MallocEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator7ReallocEPvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16storeSASLOptionsERKNS_17optionenvironment11EnvironmentE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIiEERS2_T_iPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE6appendENS_10StringDataE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsENS_10StringDataE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionC1ERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionC2ERKSs' type='func-type' binding='weak-binding' alias='_ZN5mongo17optionenvironment13OptionSectionC1ERKSs' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo17optionenvironment13OptionSectionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment17OptionDescriptionD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo17optionenvironment17OptionDescriptionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment17OptionDescriptionD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment5ValueD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo17optionenvironment5ValueD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17optionenvironment5ValueD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18AssertionExceptionC1ERKSsi' type='func-type' binding='weak-binding' alias='_ZN5mongo18AssertionExceptionC2ERKSsi' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18AssertionExceptionC2ERKSsi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18AssertionExceptionD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18AssertionExceptionD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo18AssertionExceptionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18AssertionExceptionD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionC1EiRKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionC2EiRKSs' type='func-type' binding='weak-binding' alias='_ZN5mongo21MsgAssertionExceptionC1EiRKSs' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo21MsgAssertionExceptionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE3setERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE8validateERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsEC1EPNS_18ServerParameterSetERKSsPSsbb' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterISsEC2EPNS_18ServerParameterSetERKSsPSsbb' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsEC2EPNS_18ServerParameterSetERKSsPSsbb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterISsED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3setERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE8validateERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC1EPNS_18ServerParameterSetERKSsPS3_bb' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC2EPNS_18ServerParameterSetERKSsPS3_bb' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC2EPNS_18ServerParameterSetERKSsPS3_bb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE3setERKi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE8validateERKi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiEC1EPNS_18ServerParameterSetERKSsPibb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiEC2EPNS_18ServerParameterSetERKSsPibb' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterIiEC1EPNS_18ServerParameterSetERKSsPibb' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED2Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo23ExportedServerParameterIiED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo25BSONObjBuilderValueStreamD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo25BSONObjBuilderValueStreamD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo25BSONObjBuilderValueStreamD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameter8validateERKi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterC1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo36ExportedScramIterationCountParameterC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD2Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo36ExportedScramIterationCountParameterD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo43_mongoInitializerFunction_SASLOptions_StoreEPNS_18InitializerContextE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo46_mongoInitializerFunction_SASLOptions_RegisterEPNS_18InitializerContextE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status2OKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo6Status9ErrorInfoD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC1EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo6StatusC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC2EOS0_' type='func-type' binding='weak-binding' alias='_ZN5mongo6StatusC1EOS0_' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo6StatusD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian14littleToNativeIiEET_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian14nativeToLittleIcEET_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian14nativeToLittleIiEET_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIaE14nativeToLittleEa' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIiE14littleToNativeEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIiE14nativeToLittleEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger10LogManager15getGlobalDomainEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger11LogSeverity3LogEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger11LogSeverityC1Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger11LogSeverityC2Ei' type='func-type' binding='weak-binding' alias='_ZN5mongo6logger11LogSeverityC1Ei' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger12LogComponentC1ENS1_5ValueE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger12LogComponentC2ENS1_5ValueE' type='func-type' binding='weak-binding' alias='_ZN5mongo6logger12LogComponentC1ENS1_5ValueE' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger15globalLogDomainEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder6streamEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObj4initEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjC1EPKc' type='func-type' binding='weak-binding' alias='_ZN5mongo7BSONObjC2EPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjD1Ev' type='func-type' binding='weak-binding' alias='_ZN5mongo7BSONObjD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType10unsafeLoadINS_12LittleEndianIiEEEEvPT_PKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType10unsafeLoadIiEEvPT_PKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIcEEEEvRKT_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIiEEEEvRKT_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreIcEEvRKT_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreIiEEvRKT_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType16defaultConstructINS_12LittleEndianIiEEEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType16defaultConstructIiEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIcEEvE11unsafeStoreERKS3_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE10unsafeLoadEPS3_PKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE11unsafeStoreERKS3_PcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE16defaultConstructEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerIcvE11unsafeStoreERKcPcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE10unsafeLoadEPiPKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE11unsafeStoreERKiPcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE16defaultConstructEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataView5writeINS_12LittleEndianIcEEEERS0_RKT_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataView5writeINS_12LittleEndianIiEEEERS0_RKT_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataViewC1EPc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8DataViewC2EPc' type='func-type' binding='weak-binding' alias='_ZN5mongo8DataViewC1EPc' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE10deallocateEPSsm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE7destroyISsEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE9constructISsISsEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE9constructISsJSsEEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISsE9constructISsISsEEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC1ERKS1_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISsEC2ERKS1_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISsEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISsED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEE7destroyIS5_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEE7destroyIS5_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISsEE15_S_always_equalEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISsEE27_S_propagate_on_copy_assignEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferISt4pairIKSsSsEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferISt4pairIKSsSsEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC1ERKS2_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC2ERKS2_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC1ERKS1_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC2ERKS1_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxneIPKSsSt6vectorISsSaISsEEEEbRKNS_17__normal_iteratorIT_T0_EESB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxneIPSsSt6vectorISsSaISsEEEEbRKNS_17__normal_iteratorIT_T0_EESA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10mongoutils3str6streamcvSsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StringData4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StringData6copyToEPcb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo11DBException12appendPrefixERSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo11DBException4whatEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo11DBException7getCodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo11_BufBuilderINS_16TrivialAllocatorEE3lenEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo11_BufBuilderINS_16TrivialAllocatorEE7getSizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo12LittleEndianIiEcviEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEERKS0_PT_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEET_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo13ConstDataView4viewEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17StringBuilderImplINS_16TrivialAllocatorEE3strEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISsEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISt6vectorISsSaISsEEEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asIiEET_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo18AssertionException15isUserAssertionEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo18AssertionException6severeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo23ExportedServerParameterISsE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo23ExportedServerParameterIiE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Status4codeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Status4isOKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo7BSONObj7isValidEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo7BSONObj7objdataEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo7BSONObj7objsizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo8DataView4viewEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISsE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Vector_baseISsSaISsEE13get_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Vector_baseISsSaISsEE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPSsE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPSsEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14default_deleteIN5mongo14BSONObjBuilderEEclEPS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKSsSsEEneERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKSsSsEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE8capacityEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorISsSaISsEEixEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPFN5mongo6StatusEPNS1_18InitializerContextEEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsEC1ERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISsEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsEC2ERKS_' type='func-type' binding='weak-binding' alias='_ZNSaISsEC1ERKS_' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISsED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISsED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo14BSONObjBuilderELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEELb0EE7_M_headERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo14BSONObjBuilderEELb1EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEELb0EE7_S_baseES7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEELb1EE7_S_baseES7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEELb1EE7_S_baseES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Iter_baseIPSsLb0EE7_S_baseES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EE11get_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EISt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPKSsPSsEET0_T_S7_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPSsS3_EET0_T_S5_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEEvT_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSsEEvT_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEEvT_S8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_impl12_M_swap_dataERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC1ERKS0_' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2ERKS0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE13_M_deallocateEPSsm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC1ERKS0_' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEEC2ERKS0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISsSaISsEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE13_M_deallocateEPS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKSsSsEE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPSsEC1ES0_' type='func-type' binding='weak-binding' alias='_ZNSt13move_iteratorIPSsEC2ES0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPSsEC2ES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPSsEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb1EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE10_M_managerERSt9_Any_dataRKS8_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE15_M_init_functorERSt9_Any_dataOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE15_M_init_functorERSt9_Any_dataOS6_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE21_M_not_empty_functionIS5_EEbRKPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE8_M_cloneERSt9_Any_dataRKS8_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt14_Function_baseC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt14_Function_baseD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IINS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IJNS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IINS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10deallocateERS0_PSsm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE11_S_max_sizeIKS0_vEEmRT_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE12_S_constructISsISsEEENSt9enable_ifIXsrSt6__and_IINS1_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE12_S_constructISsJSsEEENSt9enable_ifIXsrSt6__and_IJNS1_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISsEE12_S_constructISsISsEEENSt9enable_ifIXsrSt6__and_IINS1_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE7destroyISsEEvRS0_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE8allocateERS0_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE8max_sizeERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE9constructISsISsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE9constructISsJSsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISsEE9constructISsISsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEE10deallocateERS5_PS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IINS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IJNS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IJNS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10deallocateERS5_PS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE7destroyIS3_EEvRS5_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFN5mongo6StatusEPNS0_18InitializerContextEEPS4_E9_M_invokeERKSt9_Any_dataS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC1EPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC2EPSt13_Rb_tree_nodeIS2_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC2EPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsEET0_T_SC_SB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIPSsS2_EET0_T_S4_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPSsES3_EET0_T_S6_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC2Ev,_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC1Ev,_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKSsSsED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKSsSsED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt4pairIKSsSsED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE12emplace_backIISsEEEvDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISsSaISsEE12emplace_backIJSsEEEvDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE12emplace_backIJSsEEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE14_M_move_assignEOS1_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE15_M_erase_at_endEPSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIISsEEEvDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKSsS1_EEEEPSsmT_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEE9push_backEOSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEC1ERKS0_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISsSaISsEEC2ERKS0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISsSaISsEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISsSaISsEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEaSEOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISsSaISsEEaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC1IPS4_vEET_' type='func-type' binding='weak-binding' alias='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC2IPS4_vEET_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC2IPS4_vEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPFN5mongo6StatusEPNS1_18InitializerContextEEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPKSt9type_infoEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPPFN5mongo6StatusEPNS1_18InitializerContextEEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9exceptionC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt9exceptionC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9exceptionC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsIRKSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsIRSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsISsEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsJRKSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZSt10_ConstructISsIRKSsEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsJRSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZSt10_ConstructISsIRSsEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructISsJSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZSt10_ConstructISsISsEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofIKPFN5mongo6StatusEPNS0_18InitializerContextEEEPT_RS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISsEPT_RS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEPT_RS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEISt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEJSt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' alias='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEISt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS6_DpT1_EE' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEISt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EIS9_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEJSt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' alias='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEISt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EIS9_DpT1_EE' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEIEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS5_DpT1_EE' type='func-type' binding='weak-binding' alias='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEENSt11_Miter_baseIT_E13iterator_typeES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__miter_baseIPSsENSt11_Miter_baseIT_E13iterator_typeES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEENSt11_Niter_baseIT_E13iterator_typeES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEENSt11_Niter_baseIT_E13iterator_typeES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIPSsENSt11_Niter_baseIT_E13iterator_typeES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__copy_move_aILb0EPKSsPSsET1_T0_S4_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__copy_move_aILb0EPSsS0_ET1_T0_S2_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__copy_move_a2ILb0EN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEENS1_IPSsS6_EEET1_T0_SB_SA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__copy_move_a2ILb0EPSsS0_ET1_T0_S2_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15__alloc_on_copyISaISsEEvRT_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15__alloc_on_moveISaISsEEvRT_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18__do_alloc_on_copyISaISsEEvRT_RKS1_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18__do_alloc_on_moveISaISsEEvRT_S2_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsET0_T_SA_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uninitialized_copyIPSsS0_ET0_T_S2_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPSsES1_ET0_T_S4_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsSsET0_T_SA_S9_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aIPSsS0_SsET0_T_S2_S1_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPSsES1_SsET0_T_S4_S3_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPSsSt13move_iteratorIS0_EET0_T_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPSsS0_SaISsEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' alias='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' alias='_ZSt3getILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' alias='_ZSt3getILm1EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' is-defined='yes'/>
-    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEENS1_IPSsS6_EEET0_T_SB_SA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyIPSsS0_ET0_T_S2_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFN5mongo6StatusEPNS0_18InitializerContextEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPSsEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSaISsEEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSsEONSt16remove_referenceIT_E4typeEOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt6vectorISsSaISsEEEONSt16remove_referenceIT_E4typeEOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPSsEvRT_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo18InitializerContextEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSsEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSsEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISsEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEvT_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEESsEvT_S7_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPSsEvT_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPSsSsEvT_S1_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEvT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEES4_EvT_S6_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyISsEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIPSsEbRKSt13move_iteratorIT_ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStneIPSsEbRKSt13move_iteratorIT_ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStneISsEbRKSaIT_ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_OS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPvS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnwmPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10mongoutils3str6streamC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10mongoutils3str6streamD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA42_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA50_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIiEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10AtomicWordIjE16fetchAndSubtractEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10AtomicWordIjE16subtractAndFetchEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC1EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo10StringDataC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC1ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo10StringDataC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC2ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo10StringDataC1ERKSs' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBException10addContextERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBExceptionC1ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBExceptionC2ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo11DBExceptionC1ERKSsi' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBExceptionD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBExceptionD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo11DBExceptionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DBExceptionD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE12reserveBytesEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE13appendNumImplIcEEvT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE13appendNumImplIiEEvT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE15grow_reallocateEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE18claimReservedBytesEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE3bufEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4growEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4killEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4skipEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendBufEPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendNumEc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendNumEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendStrENS_10StringDataEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC1Ei' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12LittleEndianIcEC1Ec' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12LittleEndianIcEC2Ec' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo12LittleEndianIcEC1Ec' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12LittleEndianIiEC1Ei' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo12LittleEndianIiEC2Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12LittleEndianIiEC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo12SharedBufferC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo12SharedBufferD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ConstDataViewC1EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo13ConstDataViewC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ConstDataViewC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ExceptionInfoC1ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo13ExceptionInfoC2ERKSsi' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ExceptionInfoC2ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ExceptionInfoD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo13ExceptionInfoD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13ExceptionInfoD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder11appendArrayENS_10StringDataERKNS_7BSONObjE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder4doneEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder5_doneEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEPKci' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendISsEERS0_NS_10StringDataERKSt6vectorIT_SaIS5_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6numStrEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderC1Ei' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo14BSONObjBuilderC2Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo14BSONObjBuilderD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14addSASLOptionsEPNS_17optionenvironment13OptionSectionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15BSONSizeTracker3gotEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15tagLittleEndianIcEENS_12LittleEndianIT_EES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15tagLittleEndianIiEENS_12LittleEndianIT_EES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16SASLGlobalParamsC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo16SASLGlobalParamsC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16SASLGlobalParamsC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16SASLGlobalParamsD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo16SASLGlobalParamsD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16SASLGlobalParamsD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator4FreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator6MallocEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator7ReallocEPvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16storeSASLOptionsERKNS_17optionenvironment11EnvironmentE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIiEERS2_T_iPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE6appendENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionC1ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionC2ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17optionenvironment13OptionSectionC1ERKSs' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17optionenvironment13OptionSectionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment13OptionSectionD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment17OptionDescriptionD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17optionenvironment17OptionDescriptionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment17OptionDescriptionD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment5ValueD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo17optionenvironment5ValueD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17optionenvironment5ValueD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18AssertionExceptionC1ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo18AssertionExceptionC2ERKSsi' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18AssertionExceptionC2ERKSsi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18AssertionExceptionD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18AssertionExceptionD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo18AssertionExceptionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18AssertionExceptionD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionC1EiRKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionC2EiRKSs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo21MsgAssertionExceptionC1EiRKSs' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo21MsgAssertionExceptionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21MsgAssertionExceptionD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE3setERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsE8validateERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsEC1EPNS_18ServerParameterSetERKSsPSsbb' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterISsEC2EPNS_18ServerParameterSetERKSsPSsbb' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsEC2EPNS_18ServerParameterSetERKSsPSsbb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterISsED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISsED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3setERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEE8validateERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC1EPNS_18ServerParameterSetERKSsPS3_bb' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC2EPNS_18ServerParameterSetERKSsPS3_bb' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEC2EPNS_18ServerParameterSetERKSsPS3_bb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterISt6vectorISsSaISsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE3setERKNS_11BSONElementE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE3setERKi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE6appendEPNS_16OperationContextERNS_14BSONObjBuilderERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiE8validateERKi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiEC1EPNS_18ServerParameterSetERKSsPibb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiEC2EPNS_18ServerParameterSetERKSsPibb' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterIiEC1EPNS_18ServerParameterSetERKSsPibb' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23ExportedServerParameterIiED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo23ExportedServerParameterIiED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo25BSONObjBuilderValueStreamD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo25BSONObjBuilderValueStreamD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo25BSONObjBuilderValueStreamD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameter8validateERKi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo36ExportedScramIterationCountParameterC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo36ExportedScramIterationCountParameterD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo36ExportedScramIterationCountParameterD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo43_mongoInitializerFunction_SASLOptions_StoreEPNS_18InitializerContextE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo46_mongoInitializerFunction_SASLOptions_RegisterEPNS_18InitializerContextE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status2OKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6Status9ErrorInfoD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC1EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6StatusC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6StatusC1EOS0_' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6StatusD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian14littleToNativeIiEET_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian14nativeToLittleIcEET_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian14nativeToLittleIiEET_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIaE14nativeToLittleEa' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIiE14littleToNativeEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6endian18ByteOrderConverterIiE14nativeToLittleEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger10LogManager15getGlobalDomainEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger11LogSeverity3LogEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger11LogSeverityC1Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger11LogSeverityC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6logger11LogSeverityC1Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger12LogComponentC1ENS1_5ValueE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger12LogComponentC2ENS1_5ValueE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo6logger12LogComponentC1ENS1_5ValueE' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger15globalLogDomainEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder6streamEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObj4initEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjC1EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo7BSONObjC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo7BSONObjD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType10unsafeLoadINS_12LittleEndianIiEEEEvPT_PKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType10unsafeLoadIiEEvPT_PKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIcEEEEvRKT_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIiEEEEvRKT_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreIcEEvRKT_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType11unsafeStoreIiEEvRKT_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType16defaultConstructINS_12LittleEndianIiEEEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType16defaultConstructIiEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIcEEvE11unsafeStoreERKS3_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE10unsafeLoadEPS3_PKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE11unsafeStoreERKS3_PcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIiEEvE16defaultConstructEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerIcvE11unsafeStoreERKcPcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE10unsafeLoadEPiPKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE11unsafeStoreERKiPcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerIivE16defaultConstructEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataView5writeINS_12LittleEndianIcEEEERS0_RKT_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataView5writeINS_12LittleEndianIiEEEERS0_RKT_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataViewC1EPc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataViewC2EPc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN5mongo8DataViewC1EPc' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE10deallocateEPSsm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE7destroyISsEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE9constructISsISsEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsE9constructISsJSsEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISsE9constructISsISsEEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC1ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISsEC2ERKS1_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISsEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISsED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISsED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEE7destroyIS5_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEE7destroyIS5_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE10deallocateEPS5_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISsEE15_S_always_equalEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISsEE27_S_propagate_on_copy_assignEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferISt4pairIKSsSsEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferISt4pairIKSsSsEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC1ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC2ERKS2_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC1ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC2ERKS1_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxneIPKSsSt6vectorISsSaISsEEEEbRKNS_17__normal_iteratorIT_T0_EESB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxneIPSsSt6vectorISsSaISsEEEEbRKNS_17__normal_iteratorIT_T0_EESA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10mongoutils3str6streamcvSsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StringData4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StringData6copyToEPcb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11DBException12appendPrefixERSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11DBException4whatEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11DBException7getCodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11_BufBuilderINS_16TrivialAllocatorEE3lenEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11_BufBuilderINS_16TrivialAllocatorEE7getSizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo12LittleEndianIiEcviEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEERKS0_PT_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEET_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo13ConstDataView4viewEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17StringBuilderImplINS_16TrivialAllocatorEE3strEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISsEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asISt6vectorISsSaISsEEEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17optionenvironment5Value2asIiEET_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo18AssertionException15isUserAssertionEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo18AssertionException6severeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo23ExportedServerParameterISsE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo23ExportedServerParameterISt6vectorISsSaISsEEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo23ExportedServerParameterIiE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Status4codeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Status4isOKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo7BSONObj7isValidEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo7BSONObj7objdataEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo7BSONObj7objsizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo8DataView4viewEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISsE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Vector_baseISsSaISsEE13get_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Vector_baseISsSaISsEE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPSsE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPSsEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14default_deleteIN5mongo14BSONObjBuilderEEclEPS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKSsSsEEneERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKSsSsEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE8capacityEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorISsSaISsEEixEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPFN5mongo6StatusEPNS1_18InitializerContextEEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsEC1ERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISsEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsEC2ERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISsEC1ERKS_' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISsED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISsED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment13OptionSectionEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo14BSONObjBuilderELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEELb0EE7_M_headERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo14BSONObjBuilderEELb1EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEELb0EE7_S_baseES7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEELb1EE7_S_baseES7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Iter_baseIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEELb1EE7_S_baseES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Iter_baseIPSsLb0EE7_S_baseES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment13OptionSectionEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo17optionenvironment17OptionDescriptionEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo17optionenvironment10ConstraintEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EE11get_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEE7_M_headERS5_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EISt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo14BSONObjBuilderEEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPKSsPSsEET0_T_S7_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPSsS3_EET0_T_S5_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEEvT_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSsEEvT_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEEvT_S8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE11_M_allocateEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_impl12_M_swap_dataERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC1ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2ERKS0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE12_Vector_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE13_M_deallocateEPSsm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC1ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEEC2ERKS0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISsSaISsEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISsSaISsEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE13_M_deallocateEPS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo17optionenvironment10ConstraintELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKSsSsEE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPSsEC1ES0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13move_iteratorIPSsEC2ES0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPSsEC2ES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPSsEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb1EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE10_M_managerERSt9_Any_dataRKS8_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE15_M_init_functorERSt9_Any_dataOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE15_M_init_functorERSt9_Any_dataOS6_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE21_M_not_empty_functionIS5_EEbRKPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerIPFN5mongo6StatusEPNS1_18InitializerContextEEE8_M_cloneERSt9_Any_dataRKS8_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_Function_baseC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_Function_baseD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14unary_functionIPN5mongo18InitializerContextENS0_6StatusEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IINS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IJNS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISsEE10_S_destroyISsEENSt9enable_ifIXsrSt6__and_IINS1_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS0_PS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE10deallocateERS0_PSsm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE11_S_max_sizeIKS0_vEEmRT_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE12_S_constructISsISsEEENSt9enable_ifIXsrSt6__and_IINS1_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE12_S_constructISsJSsEEENSt9enable_ifIXsrSt6__and_IJNS1_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISsEE12_S_constructISsISsEEENSt9enable_ifIXsrSt6__and_IINS1_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS0_PS6_DpOS7_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE7destroyISsEEvRS0_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE8allocateERS0_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE8max_sizeERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE9constructISsISsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISsEE9constructISsJSsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISsEE9constructISsISsEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS0_PT_DpOS3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEE10deallocateERS5_PS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IINS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IJNS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10_S_destroyIS3_EENSt9enable_ifIXsrSt6__and_IJNS6_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS5_PSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE10deallocateERS5_PS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKSsSsEEEE7destroyIS3_EEvRS5_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFN5mongo6StatusEPNS0_18InitializerContextEEPS4_E9_M_invokeERKSt9_Any_dataS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC1EPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC2EPSt13_Rb_tree_nodeIS2_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEC2EPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKSsSsEEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsEET0_T_SC_SB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIPSsS2_EET0_T_S4_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPSsES3_EET0_T_S6_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC2Ev,_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC1Ev,_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEIPNS0_18InitializerContextEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt31_Maybe_unary_or_binary_functionIN5mongo6StatusEJPNS0_18InitializerContextEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment13OptionSectionESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4listIN5mongo17optionenvironment17OptionDescriptionESaIS2_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKSsSsED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKSsSsED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIKSsSsED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE12emplace_backIISsEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISsSaISsEE12emplace_backIJSsEEEvDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE12emplace_backIJSsEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE14_M_move_assignEOS1_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE15_M_erase_at_endEPSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIISsEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKSsS1_EEEEPSsmT_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEE9push_backEOSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEC1ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISsSaISsEEC2ERKS0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISsSaISsEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISsSaISsEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEaSEOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISsSaISsEEaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISt10shared_ptrIN5mongo17optionenvironment10ConstraintEESaIS4_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE13_Rb_tree_implIS6_Lb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC1IPS4_vEET_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC2IPS4_vEET_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEEC2IPS4_vEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8functionIFN5mongo6StatusEPNS0_18InitializerContextEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPFN5mongo6StatusEPNS1_18InitializerContextEEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPKSt9type_infoEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPPFN5mongo6StatusEPNS1_18InitializerContextEEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9exceptionC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9exceptionC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9exceptionC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsIRKSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsIRSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsISsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsJRKSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt10_ConstructISsIRKSsEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsJRSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt10_ConstructISsIRSsEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructISsJSsEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt10_ConstructISsISsEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofIKPFN5mongo6StatusEPNS0_18InitializerContextEEEPT_RS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISsEPT_RS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEPT_RS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEISt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEJSt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt12__get_helperILm0EPN5mongo14BSONObjBuilderEISt14default_deleteIS1_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS6_DpT1_EE' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEISt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EIS9_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEJSt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEISt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EIS9_DpT1_EE' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEIEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EIS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo14BSONObjBuilderEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEENSt11_Miter_baseIT_E13iterator_typeES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__miter_baseIPSsENSt11_Miter_baseIT_E13iterator_typeES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEENSt11_Niter_baseIT_E13iterator_typeES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEENSt11_Niter_baseIT_E13iterator_typeES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIPSsENSt11_Niter_baseIT_E13iterator_typeES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__copy_move_aILb0EPKSsPSsET1_T0_S4_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__copy_move_aILb0EPSsS0_ET1_T0_S2_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__copy_move_a2ILb0EN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEENS1_IPSsS6_EEET1_T0_SB_SA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__copy_move_a2ILb0EPSsS0_ET1_T0_S2_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15__alloc_on_copyISaISsEEvRT_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15__alloc_on_moveISaISsEEvRT_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18__do_alloc_on_copyISaISsEEvRT_RKS1_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18__do_alloc_on_moveISaISsEEvRT_S2_St17integral_constantIbLb1EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsET0_T_SA_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uninitialized_copyIPSsS0_ET0_T_S2_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPSsES1_ET0_T_S4_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEEPSsSsET0_T_SA_S9_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aIPSsS0_SsET0_T_S2_S1_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPSsES1_SsET0_T_S4_S3_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPSsSt13move_iteratorIS0_EET0_T_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPSsS0_SaISsEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EIPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt3getILm0EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt3getILm1EIPN5mongo14BSONObjBuilderESt14default_deleteIS1_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeEE4typeERSA_' is-defined='yes'/>
+    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKSsSt6vectorISsSaISsEEEENS1_IPSsS6_EEET0_T_SB_SA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyIPSsS0_ET0_T_S2_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFN5mongo6StatusEPNS0_18InitializerContextEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPSsEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSaISsEEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSsEONSt16remove_referenceIT_E4typeEOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt6vectorISsSaISsEEEONSt16remove_referenceIT_E4typeEOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPSsEvRT_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo18InitializerContextEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSsEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSsEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISsEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEEEvT_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEESsEvT_S7_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPSsEvT_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPSsSsEvT_S1_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEvT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPSt10shared_ptrIN5mongo17optionenvironment10ConstraintEES4_EvT_S6_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyISsEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyISt10shared_ptrIN5mongo17optionenvironment10ConstraintEEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIPSsEbRKSt13move_iteratorIT_ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStneIPSsEbRKSt13move_iteratorIT_ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStneISsEbRKSaIT_ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_OS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnwmPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZN5mongo16saslGlobalParamsE' size='56' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo19SASLHostNameSettingE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo20SASLAuthdPathSettingE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo22SASLServiceNameSettingE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo24scramIterationCountParamE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo35SASLAuthenticationMechanismsSettingE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIFN5mongo6StatusEPNS_18InitializerContextEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo18AssertionExceptionE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterISsEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterIiEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo36ExportedScramIterationCountParameterE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPFN5mongo6StatusEPNS_18InitializerContextEE' size='32' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSFN5mongo6StatusEPNS_18InitializerContextEE' size='43' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo18AssertionExceptionE' size='29' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterISsEE' size='38' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='55' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterIiEE' size='37' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo36ExportedScramIterationCountParameterE' size='47' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPFN5mongo6StatusEPNS_18InitializerContextEE' size='44' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo18AssertionExceptionE' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterISsEE' size='80' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='80' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterIiEE' size='80' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo36ExportedScramIterationCountParameterE' size='80' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16saslGlobalParamsE' size='56' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo19SASLHostNameSettingE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo20SASLAuthdPathSettingE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo22SASLServiceNameSettingE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo24scramIterationCountParamE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo35SASLAuthenticationMechanismsSettingE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIFN5mongo6StatusEPNS_18InitializerContextEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo18AssertionExceptionE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterISsEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo23ExportedServerParameterIiEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo36ExportedScramIterationCountParameterE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPFN5mongo6StatusEPNS_18InitializerContextEE' size='32' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSFN5mongo6StatusEPNS_18InitializerContextEE' size='43' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo18AssertionExceptionE' size='29' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterISsEE' size='38' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='55' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo23ExportedServerParameterIiEE' size='37' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo36ExportedScramIterationCountParameterE' size='47' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPFN5mongo6StatusEPNS_18InitializerContextEE' size='44' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo18AssertionExceptionE' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterISsEE' size='80' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterISt6vectorISsSaISsEEEE' size='80' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo23ExportedServerParameterIiEE' size='80' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo36ExportedScramIterationCountParameterE' size='80' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/mongo/db/auth/sasl_options.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index a53ed8ff01150861d74c74b2dce5903d8db193a4..fa2b39985c98381de44f2701168e24a7e4af76a3 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN10mongoutils3str6streamC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA15_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA19_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA20_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA22_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA7_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIA8_cEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsISsEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIbEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsIlEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10mongoutils3str6streamlsImEERS1_RKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEE4swapERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE10get_objectEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE11dereferenceEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12assign_valueEOS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12get_ptr_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE6assignEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE7destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE8cast_ptrEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE8get_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE9constructEOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE10get_objectEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE11dereferenceEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE12get_ptr_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE7destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8cast_ptrEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8get_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE9constructEOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEEC2EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE10get_objectEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE11dereferenceEPS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE12get_ptr_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE7destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8cast_ptrEPS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8get_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE9constructEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE9constructERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor11EventHandleEE7addressEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor14CallbackHandleEE7addressEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor21RemoteCommandResponseEE7addressEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor12TaskExecutor11EventHandleEE4moveERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor12TaskExecutor14CallbackHandleEE4moveERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor21RemoteCommandResponseEE4moveERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor11EventHandleEOS5_EEvv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor14CallbackHandleEOS5_EEvv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor12TaskExecutor11EventHandleEEEONS_16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor12TaskExecutor14CallbackHandleEEEONS_16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor21RemoteCommandResponseEEEONS_16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost4moveIRNS_8optionalIN5mongo8executor12TaskExecutor11EventHandleEEEEEONS_16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost4moveIRNS_8optionalIN5mongo8executor21RemoteCommandResponseEEEEEONS_16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost7forwardIN5mongo8executor12TaskExecutor11EventHandleERS4_EEOT_OT0_PNS_11move_detail11enable_if_cIXqusr11move_detail19is_lvalue_referenceIS6_EE5valuesr11move_detail19is_lvalue_referenceIS8_EE5valueLb1EEvE4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost7forwardIN5mongo8executor12TaskExecutor14CallbackHandleERS4_EEOT_OT0_PNS_11move_detail11enable_if_cIXqusr11move_detail19is_lvalue_referenceIS6_EE5valuesr11move_detail19is_lvalue_referenceIS8_EE5valueLb1EEvE4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEaSEOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10AtomicWordIjE11fetchAndAddEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10AtomicWordIjE16fetchAndSubtractEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10AtomicWordIjE16subtractAndFetchEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE8getValueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ENS_10ErrorCodes5ErrorESsi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ENS_6StatusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEaSEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE8getValueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEEC2ENS_6StatusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEEC2ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2ENS_6StatusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2EOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo10StringDataC2ERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11HostAndPortC2EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11HostAndPortC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11HostAndPortD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE15grow_reallocateEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4growEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4killEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12PseudoRandom9nextInt64El' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBuffer4swapERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBuffer6Holder4dataEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferC2EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo12SharedBufferD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo13OldThreadPoolD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo15NamespaceStringC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo15NamespaceStringD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator4FreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator6MallocEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo16TrivialAllocator7ReallocEPvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIiEERS2_T_iPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIlEERS2_T_iPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMImEERS2_T_iPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE6appendENS_10StringDataE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsENS_10StringDataE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_E12MakeObjGuardERS2_S6_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_E7ExecuteEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_EC2ERS2_S6_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_ED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ScopeGuardImplBase11SafeExecuteINS_18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS4_FvPNS3_19ReplicationExecutorEES6_EEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ScopeGuardImplBaseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo18ScopeGuardImplBaseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21intrusive_ptr_add_refEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor11signalEventERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12_doOperationEPNS_16OperationContextERKNS_6StatusERKNS_8executor12TaskExecutor14CallbackHandleEPSt4listINS1_8WorkItemESaISD_EEPSt5mutex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12scheduleWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12waitForEventERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14finishShutdownEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleDBWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleDBWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKNS_15NamespaceStringENS_8LockModeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleWorkAtENS_6Date_tERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor15nextRandomInt64El' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor16makeEvent_inlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor18enqueueWork_inlockEPSt4listINS1_8WorkItemESaIS3_EERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor18signalEvent_inlockERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor19_getEventFromHandleERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor19getDiagnosticStringEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor20_finishRemoteCommandERKNS_8executor20RemoteCommandRequestERKNS_10StatusWithINS2_21RemoteCommandResponseEEERKNS2_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSB_25RemoteCommandCallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor21scheduleRemoteCommandERKNS_8executor20RemoteCommandRequestERKSt8functionIFvRKNS2_12TaskExecutor25RemoteCommandCallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor22_getCallbackFromHandleERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor28scheduleReadySleepers_inlockENS_6Date_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor34maybeNotifyShutdownComplete_inlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor35scheduleWorkWithGlobalExclusiveLockERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor3nowEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor3runEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor4joinEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor4waitERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event10isSignaledEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event14_signal_inlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event17waitUntilSignaledEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event6signalEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventC1EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutor5EventC2EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventC2EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutor5EventD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor6cancelERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7getWorkEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7onEventERKNS_8executor12TaskExecutor11EventHandleERKSt8functionIFvRKNS3_12CallbackArgsEEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7startupEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8Callback17waitForCompletionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8Callback6cancelEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackC1EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutor8CallbackC2EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackC2EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutor8CallbackD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemaSEOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8shutdownEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor9makeEventEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorC1EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutorC2EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorC2EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ReplicationExecutorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner16_processResponseERKNS_8executor12TaskExecutor25RemoteCommandCallbackArgsEPS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner34_signalSufficientResponsesReceivedEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner3runEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner5startEPNS0_19ReplicationExecutorERKSt8functionIFvvEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner6cancelEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerC1EPNS0_22ScatterGatherAlgorithmE' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ScatterGatherRunnerC2EPNS0_22ScatterGatherAlgorithmE' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerC2EPNS0_22ScatterGatherAlgorithmE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerD1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl19ScatterGatherRunnerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD1Ev' type='func-type' binding='global-binding' alias='_ZN5mongo4repl22ScatterGatherAlgorithmD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Date_tC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Date_tpLINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEEERS0_T_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status2OKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status3refEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC2EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6StatusaSEOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger10LogManager15getGlobalDomainEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger11LogSeverity4castEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger11LogSeverityC2Ei' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger12LogComponentC2ENS1_5ValueE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger15globalLogDomainEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder12severityCastEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder6streamEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjC2EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjC2ERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7BSONObjD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo7fassertEiRKNS_6StatusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleaSEOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleaSERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleaSEOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestC2EOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseC2EOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5mongo9MakeGuardIvNS_4repl19ScatterGatherRunnerES2_PNS1_19ReplicationExecutorES4_EENS_18ObjScopeGuardImpl1IT0_MT1_FT_T2_ET3_EESB_PS6_SC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEE9constructIS4_JPS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE10deallocateEPS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE9constructIS4_JRKS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor20RemoteCommandRequestEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor20RemoteCommandRequestEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE10deallocateEPS6_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE9constructIS6_JS5_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE10deallocateEPS6_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE9constructIS6_JEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE10deallocateEPS8_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE7destroyIS8_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE9constructIS8_JKS6_PS4_RSt14_List_iteratorINS2_8executor12TaskExecutor11EventHandleEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferIN5mongo4repl19ReplicationExecutor5EventEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferIN5mongo4repl19ReplicationExecutor5EventEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxeqIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxneIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10mongoutils3str6streamcvSsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE14is_initializedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE10get_objectEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE11dereferenceEPKS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE14is_initializedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8get_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE10get_objectEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE11dereferenceEPKS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE14is_initializedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8get_implEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor14CallbackHandleEE7addressEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15optional_detail15aligned_storageIN5mongo8executor21RemoteCommandResponseEE7addressEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost8optionalIN5mongo8executor21RemoteCommandResponseEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE4isOKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE9getStatusEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE4isOKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE8getValueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE9getStatusEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE4isOKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE8getValueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE9getStatusEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StringData4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo10StringData6copyToEPcb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo12SharedBuffer3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo15NamespaceString2nsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo17StringBuilderImplINS_16TrivialAllocatorEE3strEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo18ScopeGuardImplBase7DismissEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo4repl19ReplicationExecutor27_getDiagnosticString_inlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_t18toMillisSinceEpochEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_t20toDurationSinceEpochEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_teqES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_tgtES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_tleES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Date_tplINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEEES0_T_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Status4codeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo6Status4isOKEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo7BSONObj7isOwnedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo8executor12TaskExecutor11EventHandle7isValidEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5mongo8executor12TaskExecutor14CallbackHandle7isValidEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKR5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKR5boost8optionalIN5mongo8executor21RemoteCommandResponseEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_Function_base8_M_emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEeqERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEneERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEneERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14default_deleteIN5mongo4repl16StorageInterfaceEEclEPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14default_deleteIN5mongo8executor16NetworkInterfaceEEclEPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14default_deleteISt10lock_guardISt5mutexEEclEPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEeqERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEneERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEneERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6chrono8durationIlSt5ratioILl1ELl1000EEE5countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6thread8joinableEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEclIJEvEES4_PS2_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEclIJRS4_RS5_RSA_RSH_RDnEvEEvPS2_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEclIJRS4_RS5_RSA_RSH_RSJ_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEclIJRS5_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEclIJRS4_SB_RSD_RmRSL_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEclES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEclES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvvEEclEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8functionIFvvEEcvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKSt8functionIFvvEEES4_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEEERKT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9type_infoeqERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNR5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNR5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIN5mongo8executor20RemoteCommandRequestEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEEC2IS3_EERKSaIT_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EE7_M_headERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt10lock_guardISt5mutexELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt10lock_guardISt5mutexELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEELb0EE7_M_headERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EE7_M_headERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsELb0EE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsELb0EE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsELb0EEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERN5mongo8executor12TaskExecutor14CallbackHandleELb0EE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERPN5mongo16OperationContextELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERPN5mongo16OperationContextELb0EEC2ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EPN5mongo4repl19ScatterGatherRunnerELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1EPN5mongo4repl19ScatterGatherRunnerELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ERN5mongo6StatusELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ERN5mongo6StatusELb0EEC2ES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteISt10lock_guardISt5mutexEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteISt10lock_guardISt5mutexEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EE7_M_headERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2IS8_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0EE7_M_headERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0EEC2IS6_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2IS4_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0EE7_M_headERS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0EEC2IS7_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EE7_M_headERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EEC2IRmEEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EEC2ImEEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5EDnLb0EE7_M_headERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5EDnLb0EEC2IDnEEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5EPSt5mutexLb0EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5EPSt5mutexLb0EEC2IS1_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EE7_M_headERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2IS8_EEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_put_nodeEPSt10_List_nodeIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE11_M_put_nodeEPSt10_List_nodeIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEC2IJS3_EEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEC2IJEEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10lock_guardISt5mutexEC2ERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10lock_guardISt5mutexED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEEC2ISaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagRKT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2INS0_4repl19ReplicationExecutor5EventEvEEOS_IT_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEaSEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEaSERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2INS0_4repl19ReplicationExecutor8CallbackEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEaSEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_tailERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2IS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEE7_M_tailERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2IRS2_JRKS3_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEE7_M_tailERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEEC2IRS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEE7_M_headERSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEE7_M_tailERSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2EOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2ERKSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2IS3_JRS5_RKS7_RS9_RmRKSF_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEE7_M_tailERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2IRS3_JRKS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEE7_M_headERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEE7_M_tailERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2EOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2ERKSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2IS3_JRKS5_RKS6_RS9_SE_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEE7_M_headERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEE7_M_tailERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2EOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2ERKSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2IS3_JRKS5_RKS6_RS9_SE_SG_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEE7_M_headERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_headERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEEC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRPN5mongo16OperationContextERNS0_6StatusEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRPN5mongo16OperationContextERNS0_6StatusEEEC2ES3_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEE7_M_tailERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2IRKS1_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEE7_M_headERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2EOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2IRKS1_JS5_SB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEE7_M_headERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEE7_M_tailERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2EOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2ERKSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2IRKS1_JRKSA_RSB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEE7_M_headERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEE7_M_tailERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2EOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKS1_RKSA_RKSB_RKSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEE7_M_tailERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2EOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEE7_M_tailERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEE7_M_headERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEE7_M_tailERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2EOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2IRS2_JRKS4_RS6_RmRKSC_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEE7_M_tailERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEC2IS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_headERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2EOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2IS3_JS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJRN5mongo6StatusEEE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJRN5mongo6StatusEEEC2ES2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEE7_M_tailERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEE7_M_headERSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEE7_M_tailERSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2EOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2ERKSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2IRKS1_JRKS2_RS6_SD_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEE7_M_headERSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEE7_M_tailERSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2EOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2ERKSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2IRKS1_JRKS2_RS6_SD_SF_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo4repl16StorageInterfaceEEEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo4repl16StorageInterfaceEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo8executor16NetworkInterfaceEEEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo8executor16NetworkInterfaceEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteISt10lock_guardISt5mutexEEEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteISt10lock_guardISt5mutexEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEE7_M_headERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEE7_M_tailERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2EOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2ERKSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2IRKS8_JRS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEE7_M_headERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEE7_M_tailERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2EOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2ERKS8_RKS9_RKSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEE7_M_headERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEE7_M_tailERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2EOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2IRS2_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEE7_M_headERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEE7_M_tailERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2ERKS2_RKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_headERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2EOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2IS6_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEE7_M_headERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEE7_M_tailERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2EOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2ERKSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2IRKS1_JRS5_RmRKSB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEE7_M_headERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEE7_M_tailERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2EOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2IRKS1_JRS5_SC_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEE7_M_headERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEE7_M_tailERSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2EOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2ERKSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2IRKS1_JRS5_SC_SE_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_headERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_tailERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEE7_M_headERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEE7_M_tailERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2EOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2ERKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2IRS3_JSA_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEE7_M_headERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEE7_M_tailERSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2EOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2IRS3_JSA_SC_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEE7_M_headERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEE7_M_tailERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2EOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2ERKSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2IRS3_JRmRKS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEE7_M_headERS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEE7_M_tailERS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEEC2EOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEEC2IS7_JDnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEE7_M_headERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEE7_M_tailERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEEC2EOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEEC2IS7_JS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_headERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_tailERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2EOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2IRmJRKS8_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEE7_M_headERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEE7_M_tailERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEEC2EOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEEC2IDnJEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEE7_M_tailERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEEC2IS1_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_headERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_tailERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2EOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__alloc_neqISaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEELb1EE8_S_do_itERKS6_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11unique_lockISt5mutexE4lockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11unique_lockISt5mutexE6unlockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11unique_lockISt5mutexEC2ERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11unique_lockISt5mutexED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5mongo8executor12TaskExecutor14CallbackHandleEEEvT_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5mongo8executor20RemoteCommandRequestEEEvT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE11_M_allocateEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_Vector_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE13_M_deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE13_M_deallocateEPS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__mutex_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo4repl19ReplicationExecutor5EventELN9__gnu_cxx12_Lock_policyE2EEC2ISaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagRKT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo4repl19ReplicationExecutor5EventELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EE4swapERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2INS0_4repl19ReplicationExecutor5EventEvEEOS_IT_LS5_2EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEaSEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEaSERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EE4swapERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2INS0_4repl19ReplicationExecutor8CallbackEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEaSEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE10_M_managerERSt9_Any_dataRKSM_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE15_M_init_functorERSt9_Any_dataOSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE15_M_init_functorERSt9_Any_dataOSK_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE21_M_not_empty_functionISK_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE8_M_cloneERSt9_Any_dataRKSM_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE10_M_managerERSt9_Any_dataRKSQ_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE15_M_init_functorERSt9_Any_dataOSO_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE15_M_init_functorERSt9_Any_dataOSO_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE21_M_not_empty_functionISO_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE8_M_cloneERSt9_Any_dataRKSQ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE10_M_managerERSt9_Any_dataRKSV_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE15_M_init_functorERSt9_Any_dataOST_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE15_M_init_functorERSt9_Any_dataOST_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE21_M_not_empty_functionIST_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE8_M_cloneERSt9_Any_dataRKSV_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE10_M_managerERSt9_Any_dataRKSI_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE15_M_init_functorERSt9_Any_dataOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE15_M_init_functorERSt9_Any_dataOSG_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE21_M_not_empty_functionISG_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE8_M_cloneERSt9_Any_dataRKSI_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE10_M_managerERSt9_Any_dataRKSC_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE15_M_init_functorERSt9_Any_dataOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE15_M_init_functorERSt9_Any_dataOSA_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE21_M_not_empty_functionISA_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE8_M_cloneERSt9_Any_dataRKSC_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE10_M_managerERSt9_Any_dataRKSZ_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE21_M_not_empty_functionISX_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE8_M_cloneERSt9_Any_dataRKSZ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE10_M_managerERSt9_Any_dataRKSZ_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE21_M_not_empty_functionISX_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE8_M_cloneERSt9_Any_dataRKSZ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE15_M_init_functorERSt9_Any_dataOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE15_M_init_functorERSt9_Any_dataOSD_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE21_M_not_empty_functionISD_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE8_M_cloneERSt9_Any_dataRKSF_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE10_M_managerERSt9_Any_dataRKS10_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE15_M_init_functorERSt9_Any_dataOSY_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE15_M_init_functorERSt9_Any_dataOSY_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE21_M_not_empty_functionISY_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE8_M_cloneERSt9_Any_dataRKS10_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE10_M_managerERSt9_Any_dataRKSE_St18_Manager_operation' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE15_M_init_functorERSt9_Any_dataOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE15_M_init_functorERSt9_Any_dataOSC_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE21_M_not_empty_functionISC_EEbRKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE8_M_cloneERSt9_Any_dataRKSE_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Function_baseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EE6_S_getERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EE7_M_swapERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2IN5mongo4repl19ReplicationExecutor5EventESaIS7_EJPS6_RSt14_List_iteratorINS4_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagPT_RKT0_DpOT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2IPN5mongo4repl19ReplicationExecutor8CallbackEEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEaSERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EEC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE15_M_add_ref_copyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE10_S_destroyIS3_EENSt9enable_ifIXsr6__and_INS5_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS4_PS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE12_S_constructIS3_JPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEENSt9enable_ifIXsr6__and_INS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSG_DpOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE9constructIS3_JPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS4_PT_DpOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE10_S_destroyIS3_EENSt9enable_ifIXsr6__and_INS5_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS4_PS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE11_S_max_sizeIKS4_vEEmRT_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE12_S_constructIS3_JRKS3_EEENSt9enable_ifIXsr6__and_INS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSB_DpOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE8allocateERS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE8max_sizeERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE9constructIS3_JRKS3_EEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor20RemoteCommandRequestEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE10_S_destroyIS8_EENSt9enable_ifIXsr6__and_INSA_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS9_PSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE10deallocateERS9_PS8_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE12_S_constructIS8_JKS5_PS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEENSt9enable_ifIXsr6__and_INSA_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE7destroyIS8_EEvRS9_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE8allocateERS9_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE9constructIS8_JKS5_PS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS9_PT_DpOSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFPN5mongo16OperationContextEvESt5_BindIFSt7_Mem_fnIMNS0_4repl16StorageInterfaceEFS2_vEEPS7_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEESt5_BindIFSt7_Mem_fnIMNS0_4repl19ReplicationExecutorEFvRKNS2_20RemoteCommandRequestES6_RKNS2_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPSB_SC_St12_PlaceholderILi1EESG_mSO_EEE9_M_invokeERKSt9_Any_dataS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_RKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_RKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEESt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFPFvRKSt8functionIS0_EES3_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2ERKSt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2ERKSt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES7_EET0_T_SA_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_Impl8_M_allocEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_ImplC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_ImplD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEC2IJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEES4_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEE9__do_wrapES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEE9__do_wrapESL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEE9__do_wrapES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEE9__do_wrapESP_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE9__do_wrapEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE9__do_wrapEOSI_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE9__do_wrapEOSN_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE9__do_wrapEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKSt8functionIFvvEEEE9__do_wrapEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE9__do_wrapERKSU_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE9__do_wrapERKSU_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE9__do_wrapERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10push_frontEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_transferESt14_List_iteratorIS3_ES7_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE14_M_create_nodeIJS3_EEEPSt10_List_nodeIS3_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE25_M_check_equal_allocatorsERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_S7_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_S7_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE9_M_insertIJS3_EEEvSt14_List_iteratorIS3_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE12emplace_backIJEEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE14_M_create_nodeIJEEEPSt10_List_nodeIS3_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE4backEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5eraseESt20_List_const_iteratorIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE8_M_eraseESt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE9_M_insertIJEEEvSt14_List_iteratorIS3_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2ERKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2IS3_S6_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEaSEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE6__callIvJS5_EJLm0ELm1ELm2EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEC2EOSI_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEC2IJRKSG_S8_SC_EEEOSE_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE6__callIvJS5_EJLm0ELm1ELm2EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2EOSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2ERKSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2IJRKSK_SD_RSE_EEEOSI_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE6__callIvJS5_EJLm0ELm1ELm2ELm3EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2EOSR_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2ERKSR_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2IJRKSP_SD_SG_SL_EEEOSN_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE6__callIvJS5_EJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEC2EOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEC2IJRKSC_S8_EEEOSA_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EE6__callIvJEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2EOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2IJS4_EEEOS6_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE6__callIvJEJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2EOSV_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2ERKSV_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2IJRS5_S8_EEERKST_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE6__callIvJEJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2EOSV_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2ERKSV_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2IJRS5_S8_EEERKST_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE6__callIS5_JEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEC2EOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEC2IJRS9_EEEOS8_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEclIJES5_EET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEE6__callIvJRS5_RS6_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2EOST_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2ERKST_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2IJSO_RKSQ_RKSR_RSB_SI_DnEEEOSN_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEclIJRS5_RS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EE6__callIvJRS5_RS6_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2EOST_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2ERKST_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2IJSO_RKSQ_RKSR_RSB_SI_SK_EEEOSN_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEclIJRS5_RS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEE6__callIvJRS6_EJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEC2EOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEC2IJRSC_RKSE_EEEOSB_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEclIJRS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE6__callIvJSC_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2EOSW_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2ERKSW_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2IJSS_RS5_RKSU_RSE_RmSO_EEEOSR_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEclIJSC_EvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE6__callIvJEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2EOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2ERKSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2IJS4_EEERKS8_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5mutex4lockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5mutex6unlockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5mutexC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2IJS3_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2IRS2_RKS3_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceEEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceEEEC2IJRS3_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2EOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2ERKSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2IJS3_RS5_RKS7_RS9_RmRKSF_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2IRS3_RKS5_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2EOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2ERKSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2IJS3_RKS5_RKS6_RS9_SE_DnEvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2EOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2ERKSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2IJS3_RKS5_RKS6_RS9_SE_SG_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEEC2ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRPN5mongo16OperationContextERNS0_6StatusEEEC2ES3_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2EOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2IRKS1_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2EOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2IJRKS1_S5_SB_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2EOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2ERKSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2IJRKS1_RKSA_RSB_EvEEDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2EOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKS1_RKSA_RKSB_RKSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2EOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono13duration_castINS_8durationIlSt5ratioILl1ELl1000EEEElS3_EENSt9enable_ifIXsr13__is_durationIT_EE5valueES6_E4typeERKNS1_IT0_T1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono20__duration_cast_implINS_8durationIlSt5ratioILl1ELl1000EEEES2_ILl1ELl1EElLb1ELb1EE6__castIlS3_EES4_RKNS1_IT_T0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono8durationIlSt5ratioILl1ELl1000EEEC2IlvEERKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono8durationIlSt5ratioILl1ELl1000EEEC2IxvEERKT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chronoeqIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chronogtIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chronoltIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread10_Impl_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread10_Impl_baseD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread10_Impl_baseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread2idC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread4swapERS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6threadC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6threadD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6threadaSEOS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_emplace_back_auxIJRKS3_EEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE9push_backERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EEixEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEC2ES6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEC2ESL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEC2ES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEC2ESP_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFN5mongo4repl10TaskRunner10NextActionEPNS0_16OperationContextERKNS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFPN5mongo16OperationContextEvEEC2ISt5_BindIFSt7_Mem_fnIMNS0_4repl16StorageInterfaceEFS2_vEEPS9_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFPN5mongo16OperationContextEvEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ISt5_BindIFSt7_Mem_fnIMNS0_4repl19ReplicationExecutorEFvRKNS2_20RemoteCommandRequestES6_RKNS2_12TaskExecutor14CallbackHandleEmRKS_IFvRKNSH_25RemoteCommandCallbackArgsEEEEEPSD_SE_St12_PlaceholderILi1EESI_mSP_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEE4swapERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EESC_SG_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESE_SH_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESE_SH_SM_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEaSISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESE_SH_SM_EEEENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt7is_sameINSt5decayIT_E4typeES7_EESt5__or_IJSt7is_voidIvESt14is_convertibleIDTclcl18__callable_functorclsr3stdE7declvalIRS12_EEEclL_ZSt7declvalIS5_ENSt20add_rvalue_referenceIS10_E4typeEvEEEEvEEEEE5valueERS7_E4typeEOS10_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEE4swapERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2EOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ISt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESC_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEE4swapERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2EOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFPFvRKS1_ES1_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS3_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS5_16OperationContextERKNS5_6StatusERKNS5_8executor12TaskExecutor14CallbackHandleEPSt4listINS7_8WorkItemESaISJ_EEPSt5mutexEEPS7_St12_PlaceholderILi1EEST_ILi2EESF_SM_DnEES9_SA_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS3_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS5_16OperationContextERKNS5_6StatusERKNS5_8executor12TaskExecutor14CallbackHandleEPSt4listINS7_8WorkItemESaISJ_EEPSt5mutexEEPS7_St12_PlaceholderILi1EEST_ILi2EESF_SM_SO_EES9_SA_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS_IFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES7_EEvEET_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8functionIFvvEEaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPKSt9type_infoEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKSt8functionIFvvEEES4_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEEERT_v' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIDnLb0ELb0EEclIRDnSt5tupleIJRPN5mongo16OperationContextERNS4_6StatusEEEEEOT_SC_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0ELb0EEclIRS4_St5tupleIJRKNS2_12TaskExecutor12CallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo6StatusELb0ELb0EEclIRS1_St5tupleIJEEEEOT_S8_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor12CallbackArgsELb0ELb0EEclIRS3_St5tupleIJEEEEOT_SA_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor14CallbackHandleELb0ELb0EEclIRS3_St5tupleIJRKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor14CallbackHandleELb0ELb0EEclIRS3_St5tupleIJRPNS0_16OperationContextERNS0_6StatusEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor20RemoteCommandRequestELb0ELb0EEclIRS2_St5tupleIJRKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor20RemoteCommandRequestELb0ELb0EEclIRS2_St5tupleIJRKNS1_12TaskExecutor12CallbackArgsEEEEEOT_SD_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0ELb0EEclIRS6_St5tupleIJRKNS3_12CallbackArgsEEEEEOT_SG_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo16OperationContextELb0ELb0EEclIRS2_St5tupleIJEEEEOT_S9_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl16StorageInterfaceELb0ELb0EEclIRS3_St5tupleIJEEEEOT_SA_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRKNS0_10StatusWithINS0_8executor21RemoteCommandResponseEEEEEEEOT_SG_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRNS0_8executor12TaskExecutor14CallbackHandleEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRPNS0_16OperationContextERNS0_6StatusEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ScatterGatherRunnerELb0ELb0EEclIRS3_St5tupleIJRKNS0_8executor12TaskExecutor12CallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ScatterGatherRunnerELb0ELb0EEclIRS3_St5tupleIJRKNS0_8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0ELb0EEclIRS7_St5tupleIJRPNS1_16OperationContextERNS1_6StatusEEEEEOT_SJ_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuIPSt5mutexLb0ELb0EEclIRS1_St5tupleIJRPN5mongo16OperationContextERNS6_6StatusEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo10StatusWithINS5_8executor21RemoteCommandResponseEEEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRPN5mongo16OperationContextERNS5_6StatusEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi2EELb0ELb1EEclISt5tupleIJRPN5mongo16OperationContextERNS5_6StatusEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0ELb0EEclIRS8_St5tupleIJRKNS1_10StatusWithINS2_21RemoteCommandResponseEEEEEEEOT_SK_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0ELb0EEclIRS8_St5tupleIJRKNS3_12CallbackArgsEEEEEOT_SI_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvvEELb0ELb0EEclIRS2_St5tupleIJEEEEOT_S9_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVKSt3_MuImLb0ELb0EEclIRmSt5tupleIJRKN5mongo10StatusWithINS4_8executor21RemoteCommandResponseEEEEEEEOT_SD_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10_ConstructIN5mongo8executor12TaskExecutor14CallbackHandleEJS3_EEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E15difference_typeES7_S7_St18input_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E15difference_typeES7_S7_St18input_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofIN5mongo4repl19ReplicationExecutor8WorkItemEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofIN5mongo8executor12TaskExecutor14CallbackHandleEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofIN5mongo8executor20RemoteCommandRequestEEPT_RS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11make_sharedIN5mongo4repl19ReplicationExecutor5EventEJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEESt10shared_ptrIT_EDpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EN5mongo8executor12TaskExecutor12CallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo16OperationContextEJNS0_6StatusEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl16StorageInterfaceEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl16StorageInterfaceEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJNS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSH_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSI_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo8executor16NetworkInterfaceEJSt14default_deleteIS2_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo8executor16NetworkInterfaceEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPSt10lock_guardISt5mutexEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEJSt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS8_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERN5mongo8executor12TaskExecutor14CallbackHandleEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERPN5mongo16OperationContextEJRNS0_6StatusEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ESt8functionIFvvEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1EN5mongo6StatusEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1EN5mongo8executor20RemoteCommandRequestEJSt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1EPN5mongo4repl19ScatterGatherRunnerEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1EPN5mongo4repl19ScatterGatherRunnerEJPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ERN5mongo6StatusEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJS0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSF_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJS0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSH_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteISt10lock_guardISt5mutexEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJNS2_20RemoteCommandRequestEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJNS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2EN5mongo8executor20RemoteCommandRequestEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2EN5mongo8executor20RemoteCommandRequestEJNS0_10StatusWithINS1_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS8_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi1EEJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi2EEJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi2EEJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSC_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEJDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEJPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm4EmJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSA_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm5EDnJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS1_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm5EPSt5mutexJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSA_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15allocate_sharedIN5mongo4repl19ReplicationExecutor5EventESaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEESt10shared_ptrIT_ERKT0_DpOT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJEESt5tupleIJDpOT_EES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEESt5tupleIJDpOT_EESA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEESt5tupleIJDpOT_EES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16forward_as_tupleIJRPN5mongo16OperationContextERNS0_6StatusEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E17iterator_categoryERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E17iterator_categoryERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES5_S4_ET0_T_S8_S7_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt32__enable_shared_from_this_helperILN9__gnu_cxx12_Lock_policyE2EEvRKSt14__shared_countIXT_EEz' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt13move_iteratorIS4_EET0_T_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPN5mongo8executor12TaskExecutor14CallbackHandleES4_SaIS3_EET0_T_S7_S6_RT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo16OperationContextENS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl16StorageInterfaceEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRPN5mongo16OperationContextERNS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJSt8functionIFvvEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo16OperationContextENS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJRPN5mongo16OperationContextERNS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm3EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEJRPS2_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESA_JDpT0_EE4typeEOSA_DpOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEJPS2_RKSt12_PlaceholderILi1EERKSN_ILi2EERSA_SH_DnEENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESW_JDpT0_EE4typeEOSW_DpOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEJPS2_RKSt12_PlaceholderILi1EERKSN_ILi2EERSA_SH_SJ_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESW_JDpT0_EE4typeEOSW_DpOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEJRPS2_RKSt12_PlaceholderILi1EEEENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESH_JDpT0_EE4typeEOSH_DpOSI_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEJPS2_RS4_RKSt12_PlaceholderILi1EERSD_RmSN_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEJRKSt12_PlaceholderILi1EES8_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESG_JDpT0_EE4typeEOSG_DpOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEJRKSt12_PlaceholderILi1EES8_SC_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESK_JDpT0_EE4typeEOSK_DpOSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEJRKSt12_PlaceholderILi1EESD_RSE_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESP_JDpT0_EE4typeEOSP_DpOSQ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEJRKSt12_PlaceholderILi1EESD_SG_SL_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueEST_JDpT0_EE4typeEOST_DpOSU_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRFvRKSt8functionIFvvEEEJS4_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueES8_JDpT0_EE4typeEOS8_DpOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEJRS6_S9_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEJRS6_S9_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4bindIRKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEJS4_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESC_JDpT0_EE4typeEOSC_DpOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRKSaIN5mongo4repl19ReplicationExecutor5EventEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRN5mongo12SharedBufferEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRN5mongo4repl19ReplicationExecutor8WorkItemEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRN5mongo6StatusEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRN5mongo8executor12TaskExecutor11EventHandleEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRN5mongo8executor12TaskExecutor14CallbackHandleEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRNSt6thread2idEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFbRSt9_Any_dataRKS0_St18_Manager_operationEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEEONSt16remove_referenceIT_E4typeEOSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKSt8functionIFvvEEEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor12CallbackArgsEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPKcEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5mongo8executor12TaskExecutor10EventStateEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5mongo8executor12TaskExecutor13CallbackStateEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSsEONSt16remove_referenceIT_E4typeEOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJN5mongo6StatusEEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS2_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS6_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS1_10StatusWithINS1_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES1_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS4_4repl19ReplicationExecutor8WorkItemESaISB_EEDnEEEONSt16remove_referenceIT_E4typeEOSI_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES1_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS4_4repl19ReplicationExecutor8WorkItemESaISB_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS3_20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS3_20RemoteCommandRequestENS2_10StatusWithINS3_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJPN5mongo10StatusWithINS1_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo10StatusWithINS1_8executor21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS1_4repl19ReplicationExecutor8WorkItemESaIS8_EEDnEEEONSt16remove_referenceIT_E4typeEOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS1_4repl19ReplicationExecutor8WorkItemESaIS8_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS5_EEDnEEEONSt16remove_referenceIT_E4typeEOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS5_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJDnEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJPSt5mutexEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm6EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS1_4repl19ScatterGatherRunnerEPNS1_10StatusWithINS3_11EventHandleEEEESt12_PlaceholderILi1EES9_SD_EEEONSt16remove_referenceIT_E4typeEOSM_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestEESt12_PlaceholderILi1EESC_SF_EEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestERKNS1_10StatusWithINS2_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESC_SF_SK_EEEONSt16remove_referenceIT_E4typeEOSV_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS1_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES9_EEEONSt16remove_referenceIT_E4typeEOSI_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKSt8functionIFvvEEES3_EEEONSt16remove_referenceIT_E4typeEOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFS0_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEES6_S7_EEEONSt16remove_referenceIT_E4typeEOSZ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFS0_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EES6_S7_EEEONSt16remove_referenceIT_E4typeEOSZ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS2_16OperationContextEvEEPS4_EEEONSt16remove_referenceIT_E4typeEOSF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEEONSt16remove_referenceIT_E4typeEOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEEONSt16remove_referenceIT_E4typeEOSX_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS2_8executor12TaskExecutor14CallbackHandleEEEPS4_St12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS2_8executor20RemoteCommandRequestERKNS2_10StatusWithINS5_21RemoteCommandResponseEEERKNS5_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSE_25RemoteCommandCallbackArgsEEEEEPS4_S6_St12_PlaceholderILi1EESF_mSN_EEEONSt16remove_referenceIT_E4typeEOS10_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES5_EEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo16OperationContextENS1_6StatusEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl16StorageInterfaceEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorENS1_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS5_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS9_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES5_ILi2EENS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISC_EEDnEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES5_ILi2EENS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISC_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS3_10StatusWithINS3_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS5_20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS5_20RemoteCommandRequestENS4_10StatusWithINS5_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt8functionIFvvEEEEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSU_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSt9_Any_dataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapINSt6thread2idEEvRT_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPFbRSt9_Any_dataRKS0_St18_Manager_operationEEvRT_S8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor12CallbackArgsEEEvRT_SC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEvRT_SC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5mongo8executor12TaskExecutor10EventStateEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5mongo8executor12TaskExecutor13CallbackStateEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapISt9_Any_dataEvRT_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIDnEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIKSaIN5mongo4repl19ReplicationExecutor5EventEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEOT_RNSt16remove_referenceISM_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEOT_RNSt16remove_referenceISA_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEOT_RNSt16remove_referenceISQ_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo4repl19ReplicationExecutor8WorkItemEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo6StatusEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo16OperationContextEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo4repl16StorageInterfaceEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo4repl19ReplicationExecutorEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPN5mongo4repl19ScatterGatherRunnerEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEOT_RNSt16remove_referenceIS8_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPSt5mutexEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRDnEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEEOT_RNSt16remove_referenceISF_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEEOT_RNSt16remove_referenceISJ_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEOT_RNSt16remove_referenceISO_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRFvRKSt8functionIFvvEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo4repl19ReplicationExecutor8WorkItemEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo6StatusEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt12_PlaceholderILi1EEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt12_PlaceholderILi2EEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEEOT_RNSt16remove_referenceISX_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEEOT_RNSt16remove_referenceISX_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvvEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRN5mongo6StatusEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEOT_RNSt16remove_referenceIS8_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo16OperationContextEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl16StorageInterfaceEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl19ReplicationExecutorEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl19ScatterGatherRunnerEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPN5mongo8executor16NetworkInterfaceEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt10lock_guardISt5mutexEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt5mutexEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceISA_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSt8functionIFvvEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRmEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt12_PlaceholderILi1EEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt12_PlaceholderILi2EEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt14default_deleteIN5mongo4repl16StorageInterfaceEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt14default_deleteIN5mongo8executor16NetworkInterfaceEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt14default_deleteISt10lock_guardISt5mutexEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestERKNS1_10StatusWithINS2_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESC_SF_SK_EEEOT_RNSt16remove_referenceIST_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt8functionIFvvEEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardImEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIN5mongo8executor12TaskExecutor14CallbackHandleEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIN5mongo8executor20RemoteCommandRequestEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor12TaskExecutor14CallbackHandleEEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor12TaskExecutor14CallbackHandleES3_EvT_S5_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor20RemoteCommandRequestEEvT_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor20RemoteCommandRequestES2_EvT_S4_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E15difference_typeES7_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E15difference_typeES7_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8for_eachIN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS5_SaIS5_EEEESt5_BindIFSt7_Mem_fnIMNS2_4repl19ReplicationExecutorEFvRKS5_EEPSE_St12_PlaceholderILi1EEEEET0_T_SQ_SP_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9make_pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEESt4pairINSt17__decay_and_stripIT_E6__typeENS8_IT0_E6__typeEEOS9_OSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9make_pairIRKN5mongo4repl19ReplicationExecutor8WorkItemERKNS0_8executor12TaskExecutor14CallbackHandleEESt4pairINSt17__decay_and_stripIT_E6__typeENSC_IT0_E6__typeEEOSD_OSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIPN5mongo8executor12TaskExecutor14CallbackHandleEEbRKSt13move_iteratorIT_ES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqNSt6thread2idES0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStneIPN5mongo8executor12TaskExecutor14CallbackHandleEEbRKSt13move_iteratorIT_ES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA15_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA19_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA20_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA22_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA7_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIA8_cEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsISsEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIbEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsIlEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10mongoutils3str6streamlsImEERS1_RKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEE4swapERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE10get_objectEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE11dereferenceEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12assign_valueEOS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE12get_ptr_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE6assignEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE7destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE8cast_ptrEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE8get_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE9constructEOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE10get_objectEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE11dereferenceEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE12get_ptr_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE7destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8cast_ptrEPS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8get_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE9constructEOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEEC2EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE10get_objectEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE11dereferenceEPS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE12destroy_implEN4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE12get_ptr_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE7destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8cast_ptrEPS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8get_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE9constructEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE9constructERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor11EventHandleEE7addressEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor14CallbackHandleEE7addressEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail15aligned_storageIN5mongo8executor21RemoteCommandResponseEE7addressEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor12TaskExecutor11EventHandleEE4moveERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor12TaskExecutor14CallbackHandleEE4moveERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail19types_when_isnt_refIN5mongo8executor21RemoteCommandResponseEE4moveERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor11EventHandleEOS5_EEvv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor14CallbackHandleEOS5_EEvv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor12TaskExecutor11EventHandleEEEONS_16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor12TaskExecutor14CallbackHandleEEEONS_16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost4moveIRN5mongo8executor21RemoteCommandResponseEEEONS_16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost4moveIRNS_8optionalIN5mongo8executor12TaskExecutor11EventHandleEEEEEONS_16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost4moveIRNS_8optionalIN5mongo8executor21RemoteCommandResponseEEEEEONS_16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost7forwardIN5mongo8executor12TaskExecutor11EventHandleERS4_EEOT_OT0_PNS_11move_detail11enable_if_cIXqusr11move_detail19is_lvalue_referenceIS6_EE5valuesr11move_detail19is_lvalue_referenceIS8_EE5valueLb1EEvE4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost7forwardIN5mongo8executor12TaskExecutor14CallbackHandleERS4_EEOT_OT0_PNS_11move_detail11enable_if_cIXqusr11move_detail19is_lvalue_referenceIS6_EE5valuesr11move_detail19is_lvalue_referenceIS8_EE5valueLb1EEvE4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEaSEOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost8optionalIN5mongo8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10AtomicWordIjE11fetchAndAddEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10AtomicWordIjE16fetchAndSubtractEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10AtomicWordIjE16subtractAndFetchEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE8getValueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ENS_10ErrorCodes5ErrorESsi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ENS_6StatusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEEaSEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE8getValueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEEC2ENS_6StatusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2ENS_6StatusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2EOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StatusWithINS_8executor21RemoteCommandResponseEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo10StringDataC2ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11HostAndPortC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11HostAndPortC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11HostAndPortD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE15grow_reallocateEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4growEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE4killEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEEC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12PseudoRandom9nextInt64El' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBuffer4swapERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBuffer6Holder4dataEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12SharedBufferD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13OldThreadPoolD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15NamespaceStringC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15NamespaceStringD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator4FreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator6MallocEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16TrivialAllocator7ReallocEPvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIiEERS2_T_iPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIlEERS2_T_iPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMImEERS2_T_iPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE6appendENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEElsEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_E12MakeObjGuardERS2_S6_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_E7ExecuteEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_EC2ERS2_S6_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS2_FvPNS1_19ReplicationExecutorEES4_ED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ScopeGuardImplBase11SafeExecuteINS_18ObjScopeGuardImpl1INS_4repl19ScatterGatherRunnerEMS4_FvPNS3_19ReplicationExecutorEES6_EEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ScopeGuardImplBaseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo18ScopeGuardImplBaseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21intrusive_ptr_add_refEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor11signalEventERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12_doOperationEPNS_16OperationContextERKNS_6StatusERKNS_8executor12TaskExecutor14CallbackHandleEPSt4listINS1_8WorkItemESaISD_EEPSt5mutex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12scheduleWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor12waitForEventERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14finishShutdownEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleDBWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleDBWorkERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKNS_15NamespaceStringENS_8LockModeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor14scheduleWorkAtENS_6Date_tERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor15nextRandomInt64El' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor16makeEvent_inlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor18enqueueWork_inlockEPSt4listINS1_8WorkItemESaIS3_EERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor18signalEvent_inlockERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor19_getEventFromHandleERKNS_8executor12TaskExecutor11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor19getDiagnosticStringEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor20_finishRemoteCommandERKNS_8executor20RemoteCommandRequestERKNS_10StatusWithINS2_21RemoteCommandResponseEEERKNS2_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSB_25RemoteCommandCallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor21scheduleRemoteCommandERKNS_8executor20RemoteCommandRequestERKSt8functionIFvRKNS2_12TaskExecutor25RemoteCommandCallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor22_getCallbackFromHandleERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor28scheduleReadySleepers_inlockENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor34maybeNotifyShutdownComplete_inlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor35scheduleWorkWithGlobalExclusiveLockERKSt8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor3nowEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor3runEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor4joinEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor4waitERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event10isSignaledEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event14_signal_inlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event17waitUntilSignaledEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5Event6signalEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventC1EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutor5EventC2EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventC2EPS1_RKSt14_List_iteratorINS_8executor12TaskExecutor11EventHandleEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutor5EventD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor5EventD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor6cancelERKNS_8executor12TaskExecutor14CallbackHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7getWorkEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7onEventERKNS_8executor12TaskExecutor11EventHandleERKSt8functionIFvRKNS3_12CallbackArgsEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor7startupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8Callback17waitForCompletionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8Callback6cancelEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackC1EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutor8CallbackC2EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackC2EPS1_St8functionIFvRKNS_8executor12TaskExecutor12CallbackArgsEEERKSt14_List_iteratorINS1_8WorkItemEERKNS6_11EventHandleE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutor8CallbackD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8CallbackD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8WorkItemaSEOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor8shutdownEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutor9makeEventEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorC1EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutorC2EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorC2EPNS_8executor16NetworkInterfaceEPNS0_16StorageInterfaceEl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ReplicationExecutorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ReplicationExecutorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner16_processResponseERKNS_8executor12TaskExecutor25RemoteCommandCallbackArgsEPS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner34_signalSufficientResponsesReceivedEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner3runEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner5startEPNS0_19ReplicationExecutorERKSt8functionIFvvEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunner6cancelEPNS0_19ReplicationExecutorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerC1EPNS0_22ScatterGatherAlgorithmE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ScatterGatherRunnerC2EPNS0_22ScatterGatherAlgorithmE' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerC2EPNS0_22ScatterGatherAlgorithmE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl19ScatterGatherRunnerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl19ScatterGatherRunnerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo4repl22ScatterGatherAlgorithmD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo4repl22ScatterGatherAlgorithmD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Date_tC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Date_tpLINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEEERS0_T_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status2OKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status3refEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6Status9ErrorInfoD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6StatusaSEOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger10LogManager15getGlobalDomainEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger11LogSeverity4castEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger11LogSeverityC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger12LogComponentC2ENS1_5ValueE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger15globalLogDomainEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder12severityCastEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilder6streamEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjC2ERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7BSONObjD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo7fassertEiRKNS_6StatusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleaSEOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor11EventHandleaSERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor12CallbackArgsD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor14CallbackHandleaSEOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestC2EOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor20RemoteCommandRequestD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseC2EOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8executor21RemoteCommandResponseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo9MakeGuardIvNS_4repl19ScatterGatherRunnerES2_PNS1_19ReplicationExecutorES4_EENS_18ObjScopeGuardImpl1IT0_MT1_FT_T2_ET3_EESB_PS6_SC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEE9constructIS4_JPS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE10deallocateEPS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE9constructIS4_JRKS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor20RemoteCommandRequestEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIN5mongo8executor20RemoteCommandRequestEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE10deallocateEPS6_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE9constructIS6_JS5_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE10deallocateEPS6_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE9constructIS6_JEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE10deallocateEPS8_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE7destroyIS8_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE9constructIS8_JKS6_PS4_RSt14_List_iteratorINS2_8executor12TaskExecutor11EventHandleEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferIN5mongo4repl19ReplicationExecutor5EventEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_bufferIN5mongo4repl19ReplicationExecutor5EventEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxeqIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxneIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10mongoutils3str6streamcvSsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor11EventHandleEE14is_initializedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE10get_objectEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE11dereferenceEPKS5_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE14is_initializedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor12TaskExecutor14CallbackHandleEE8get_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE10get_objectEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE11dereferenceEPKS4_N4mpl_5bool_ILb0EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE14is_initializedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail13optional_baseIN5mongo8executor21RemoteCommandResponseEE8get_implEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail15aligned_storageIN5mongo8executor12TaskExecutor14CallbackHandleEE7addressEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15optional_detail15aligned_storageIN5mongo8executor21RemoteCommandResponseEE7addressEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost8optionalIN5mongo8executor21RemoteCommandResponseEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE4isOKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor11EventHandleEE9getStatusEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE4isOKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE8getValueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor12TaskExecutor14CallbackHandleEE9getStatusEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE4isOKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE8getValueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StatusWithINS_8executor21RemoteCommandResponseEE9getStatusEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StringData4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo10StringData6copyToEPcb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo12SharedBuffer3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo15NamespaceString2nsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo17StringBuilderImplINS_16TrivialAllocatorEE3strEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo18ScopeGuardImplBase7DismissEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo4repl19ReplicationExecutor27_getDiagnosticString_inlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_t18toMillisSinceEpochEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_t20toDurationSinceEpochEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_teqES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_tgtES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_tleES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Date_tplINSt6chrono8durationIlSt5ratioILl1ELl1000EEEEEES0_T_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Status4codeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo6Status4isOKEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo7BSONObj7isOwnedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo8executor12TaskExecutor11EventHandle7isValidEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo8executor12TaskExecutor14CallbackHandle7isValidEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorIN5mongo8executor12TaskExecutor14CallbackHandleEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS5_ELNS_12_Lock_policyE2EEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKR5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKR5boost8optionalIN5mongo8executor21RemoteCommandResponseEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10unique_ptrISt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_Function_base8_M_emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEeqERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEneERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEneERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14default_deleteIN5mongo4repl16StorageInterfaceEEclEPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14default_deleteIN5mongo8executor16NetworkInterfaceEEclEPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14default_deleteISt10lock_guardISt5mutexEEclEPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEeqERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEneERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEneERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6chrono8durationIlSt5ratioILl1ELl1000EEE5countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6thread8joinableEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEclIJEvEES4_PS2_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEclIJRS4_RS5_RSA_RSH_RDnEvEEvPS2_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEclIJRS4_RS5_RSA_RSH_RSJ_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEclIJRS5_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEclIJRS4_SB_RSD_RmRSL_EvEEvPS2_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEclES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEclES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvvEEclEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8functionIFvvEEcvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFPFvRKSt8functionIFvvEEES4_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_Any_data9_M_accessIPSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEEERKT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9type_infoeqERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNR5boost8optionalIN5mongo8executor12TaskExecutor11EventHandleEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNR5boost8optionalIN5mongo8executor12TaskExecutor14CallbackHandleEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIN5mongo8executor20RemoteCommandRequestEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEEC2IS3_EERKSaIT_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EN5mongo8executor12TaskExecutor12CallbackArgsELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo16OperationContextELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl16StorageInterfaceELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo4repl19ReplicationExecutorELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EE7_M_headERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPN5mongo8executor16NetworkInterfaceELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt10lock_guardISt5mutexELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt10lock_guardISt5mutexELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEELb0EE7_M_headERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EE7_M_headERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsELb0EE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsELb0EEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsELb0EE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsELb0EEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERN5mongo8executor12TaskExecutor14CallbackHandleELb0EE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERPN5mongo16OperationContextELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERPN5mongo16OperationContextELb0EEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ESt8functionIFvvEELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo6StatusELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EN5mongo8executor20RemoteCommandRequestELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EPN5mongo4repl19ScatterGatherRunnerELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1EPN5mongo4repl19ScatterGatherRunnerELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ERN5mongo6StatusELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ERN5mongo6StatusELb0EEC2ES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteISt10lock_guardISt5mutexEELb1EE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt14default_deleteISt10lock_guardISt5mutexEELb1EEC2IS4_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EE7_M_headERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2IS8_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2IRS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EEC2IS2_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EN5mongo8executor20RemoteCommandRequestELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0EE7_M_headERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0EEC2IS6_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi1EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm2ESt12_PlaceholderILi2EELb1EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EEC2IS4_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2IRS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EEC2IS3_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm3EN5mongo8executor12TaskExecutor14CallbackHandleELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0EE7_M_headERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0EEC2IS7_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EE7_M_headERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EEC2IRmEEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm4EmLb0EEC2ImEEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5EDnLb0EE7_M_headERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5EDnLb0EEC2IDnEEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5EPSt5mutexLb0EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5EPSt5mutexLb0EEC2IS1_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EE7_M_headERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2ERKS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EEC2IS8_EEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_put_nodeEPSt10_List_nodeIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE11_M_put_nodeEPSt10_List_nodeIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEC2IJS3_EEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEEC2IJEEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIN5mongo8executor12TaskExecutor11EventHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10lock_guardISt5mutexEC2ERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10lock_guardISt5mutexED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEEC2ISaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagRKT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEC2INS0_4repl19ReplicationExecutor5EventEvEEOS_IT_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEaSEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEaSERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEC2INS0_4repl19ReplicationExecutor8CallbackEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEaSEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrIN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EE11get_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EEC2EPS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10unique_ptrISt10lock_guardISt5mutexESt14default_deleteIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_tailERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2IS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEE7_M_tailERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEEC2IRS2_JRKS3_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo16OperationContextENS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEE7_M_tailERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceEEEC2IRS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEE7_M_headERSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEE7_M_tailERSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2EOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2ERKSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2IS3_JRS5_RKS7_RS9_RmRKSF_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEE7_M_tailERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2IRS3_JRKS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEE7_M_headERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEE7_M_tailERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2EOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2ERKSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2IS3_JRKS5_RKS6_RS9_SE_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEE7_M_headERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEE7_M_tailERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2EOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2ERKSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2IS3_JRKS5_RKS6_RS9_SE_SG_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEE7_M_headERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEEC2IRS3_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEE7_M_headERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_headERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRPN5mongo16OperationContextERNS0_6StatusEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRPN5mongo16OperationContextERNS0_6StatusEEEC2ES3_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEE7_M_tailERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2IRKS1_JS5_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEE7_M_headERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2EOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2IRKS1_JS5_SB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEE7_M_headERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEE7_M_tailERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2EOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2ERKSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2IRKS1_JRKSA_RSB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEE7_M_headERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEE7_M_tailERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2EOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKS1_RKSA_RKSB_RKSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEE7_M_tailERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2EOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJSt8functionIFvvEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEE7_M_tailERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo6StatusEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEE7_M_headERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEE7_M_tailERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2EOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEC2IRS2_JRKS4_RS6_RmRKSC_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEE7_M_tailERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEC2IS3_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_headERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2EOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2IS3_JS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJRN5mongo6StatusEEE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJRN5mongo6StatusEEEC2ES2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEE7_M_tailERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEE7_M_headERSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEE7_M_tailERSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2EOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2ERKSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEC2IRKS1_JRKS2_RS6_SD_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEE7_M_headERSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEE7_M_tailERSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2EOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2ERKSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEC2IRKS1_JRKS2_RS6_SD_SF_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo4repl16StorageInterfaceEEEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo4repl16StorageInterfaceEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo8executor16NetworkInterfaceEEEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteIN5mongo8executor16NetworkInterfaceEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteISt10lock_guardISt5mutexEEEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt14default_deleteISt10lock_guardISt5mutexEEEEC2IS4_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEE7_M_headERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEE7_M_tailERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2EOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2ERKSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEEC2IRKS8_JRS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEE7_M_headERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEE7_M_tailERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2EOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2ERKS8_RKS9_RKSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEC2ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEE7_M_headERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEE7_M_tailERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2EOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEC2IRS2_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEE7_M_headERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEE7_M_tailERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2ERKS2_RKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS0_10StatusWithINS1_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_headERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEE7_M_tailERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2EOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEEC2IS6_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEE7_M_headERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEE7_M_tailERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2EOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2ERKSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEEC2IRKS1_JRS5_RmRKSB_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEE7_M_headERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEE7_M_tailERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2EOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEEC2IRKS1_JRS5_SC_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEE7_M_headERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEE7_M_tailERSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2EOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2ERKSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEEC2IRKS1_JRS5_SC_SE_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_headERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEE7_M_tailERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEE7_M_headERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEE7_M_tailERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2EOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2ERKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEEC2IRS3_JSA_DnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEE7_M_headERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEE7_M_tailERSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2EOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEEC2IRS3_JSA_SC_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEE7_M_headERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEE7_M_tailERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2EOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2ERKSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEEC2IRS3_JRmRKS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEE7_M_headERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEE7_M_tailERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEEC2EOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEDnEEC2IS7_JDnEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEE7_M_headERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEE7_M_tailERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEEC2EOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEPSt5mutexEEC2IS7_JS9_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_headERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_tailERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2EOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2IRmJRKS8_EvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEE7_M_headERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEE7_M_tailERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEEC2EOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJDnEEC2IDnJEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEE7_M_tailERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJPSt5mutexEEC2IS1_JEvEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_headERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEE7_M_tailERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2EOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEC2ERKS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__alloc_neqISaISt10_List_nodeIN5mongo4repl19ReplicationExecutor8WorkItemEEELb1EE8_S_do_itERKS6_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11unique_lockISt5mutexE4lockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11unique_lockISt5mutexE6unlockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11unique_lockISt5mutexEC2ERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11unique_lockISt5mutexED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5mongo8executor12TaskExecutor14CallbackHandleEEEvT_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5mongo8executor20RemoteCommandRequestEEEvT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE11_M_allocateEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_Vector_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE13_M_deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE13_M_deallocateEPS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIN5mongo8executor20RemoteCommandRequestESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__mutex_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo4repl19ReplicationExecutor5EventELN9__gnu_cxx12_Lock_policyE2EEC2ISaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagRKT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo4repl19ReplicationExecutor5EventELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EE4swapERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEC2INS0_4repl19ReplicationExecutor5EventEvEEOS_IT_LS5_2EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEaSEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEaSERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EE4swapERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEC2INS0_4repl19ReplicationExecutor8CallbackEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEaSEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE10_M_managerERSt9_Any_dataRKSM_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE15_M_init_functorERSt9_Any_dataOSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE15_M_init_functorERSt9_Any_dataOSK_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE21_M_not_empty_functionISK_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE8_M_cloneERSt9_Any_dataRKSM_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE10_M_managerERSt9_Any_dataRKSQ_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE15_M_init_functorERSt9_Any_dataOSO_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE15_M_init_functorERSt9_Any_dataOSO_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE21_M_not_empty_functionISO_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE8_M_cloneERSt9_Any_dataRKSQ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE10_M_managerERSt9_Any_dataRKSV_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE15_M_init_functorERSt9_Any_dataOST_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE15_M_init_functorERSt9_Any_dataOST_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE21_M_not_empty_functionIST_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE8_M_cloneERSt9_Any_dataRKSV_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE10_M_managerERSt9_Any_dataRKSI_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE15_M_init_functorERSt9_Any_dataOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE15_M_init_functorERSt9_Any_dataOSG_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE21_M_not_empty_functionISG_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE8_M_cloneERSt9_Any_dataRKSI_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE10_M_managerERSt9_Any_dataRKSC_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE15_M_init_functorERSt9_Any_dataOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE15_M_init_functorERSt9_Any_dataOSA_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE21_M_not_empty_functionISA_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFPFvRKSt8functionIFvvEEES4_EEE8_M_cloneERSt9_Any_dataRKSC_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE10_M_managerERSt9_Any_dataRKSZ_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE21_M_not_empty_functionISX_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE8_M_cloneERSt9_Any_dataRKSZ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE10_M_managerERSt9_Any_dataRKSZ_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE15_M_init_functorERSt9_Any_dataOSX_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE21_M_not_empty_functionISX_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE8_M_cloneERSt9_Any_dataRKSZ_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE15_M_init_functorERSt9_Any_dataOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE15_M_init_functorERSt9_Any_dataOSD_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE21_M_not_empty_functionISD_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEE8_M_cloneERSt9_Any_dataRKSF_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE10_M_managerERSt9_Any_dataRKS10_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE15_M_init_functorERSt9_Any_dataOSY_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE15_M_init_functorERSt9_Any_dataOSY_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE21_M_not_empty_functionISY_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEE8_M_cloneERSt9_Any_dataRKS10_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE10_M_managerERSt9_Any_dataRKSE_St18_Manager_operation' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE14_M_get_pointerERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE15_M_init_functorERSt9_Any_dataOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE15_M_init_functorERSt9_Any_dataOSC_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE21_M_not_empty_functionISC_EEbRKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_base13_Base_managerISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE8_M_cloneERSt9_Any_dataRKSE_St17integral_constantIbLb0EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Function_baseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EE6_S_getERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_Sp_ebo_helperILi0ESaIN5mongo4repl19ReplicationExecutor5EventEELb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EE7_M_swapERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2IN5mongo4repl19ReplicationExecutor5EventESaIS7_EJPS6_RSt14_List_iteratorINS4_8executor12TaskExecutor11EventHandleEEEEESt19_Sp_make_shared_tagPT_RKT0_DpOT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2IPN5mongo4repl19ReplicationExecutor8CallbackEEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEaSERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE15_M_add_ref_copyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE10_S_destroyIS3_EENSt9enable_ifIXsr6__and_INS5_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS4_PS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE12_S_constructIS3_JPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEENSt9enable_ifIXsr6__and_INS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSG_DpOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo4repl19ReplicationExecutor5EventEEE9constructIS3_JPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS4_PT_DpOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE10_S_destroyIS3_EENSt9enable_ifIXsr6__and_INS5_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS4_PS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE11_S_max_sizeIKS4_vEEmRT_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE12_S_constructIS3_JRKS3_EEENSt9enable_ifIXsr6__and_INS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE8allocateERS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE8max_sizeERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor12TaskExecutor14CallbackHandleEEE9constructIS3_JRKS3_EEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIN5mongo8executor20RemoteCommandRequestEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE10_S_destroyIS8_EENSt9enable_ifIXsr6__and_INSA_16__destroy_helperIT_E4typeEEE5valueEvE4typeERS9_PSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE10deallocateERS9_PS8_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE12_S_constructIS8_JKS5_PS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEENSt9enable_ifIXsr6__and_INSA_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE7destroyIS8_EEvRS9_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE8allocateERS9_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS4_ELN9__gnu_cxx12_Lock_policyE2EEEE9constructIS8_JKS5_PS3_RSt14_List_iteratorINS1_8executor12TaskExecutor11EventHandleEEEEEDTcl12_S_constructfp_fp0_spclsr3stdE7forwardIT0_Efp1_EEERS9_PT_DpOSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFPN5mongo16OperationContextEvESt5_BindIFSt7_Mem_fnIMNS0_4repl16StorageInterfaceEFS2_vEEPS7_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEESt5_BindIFSt7_Mem_fnIMNS0_4repl19ReplicationExecutorEFvRKNS2_20RemoteCommandRequestES6_RKNS2_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPSB_SC_St12_PlaceholderILi1EESG_mSO_EEE9_M_invokeERKSt9_Any_dataS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_RKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEESt5_BindIFPFvS5_RKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEESt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEE9_M_invokeERKSt9_Any_dataS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFPFvRKSt8functionIS0_EES3_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Function_handlerIFvvESt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEE9_M_invokeERKSt9_Any_data' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEC2ERKSt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEC2ERKSt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES7_EET0_T_SA_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_Impl8_M_allocEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_ImplC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE5_ImplD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EEC2IJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEEES4_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEE9__do_wrapES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEE9__do_wrapESL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEE9__do_wrapES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEE9__do_wrapESP_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE9__do_wrapEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE9__do_wrapEOSI_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE9__do_wrapEOSN_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE9__do_wrapEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerIPFvRKSt8functionIFvvEEEE9__do_wrapEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE9__do_wrapERKSU_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE9__do_wrapERKSU_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt26_Maybe_wrap_member_pointerISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE9__do_wrapERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE10push_frontEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE11_M_transferESt14_List_iteratorIS3_ES7_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE14_M_create_nodeIJS3_EEEPSt10_List_nodeIS3_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE25_M_check_equal_allocatorsERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_EOS5_S7_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE6spliceESt20_List_const_iteratorIS3_ERS5_S7_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EE9_M_insertIJS3_EEEvSt14_List_iteratorIS3_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE12emplace_backIJEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE14_M_create_nodeIJEEEPSt10_List_nodeIS3_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE4backEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE5eraseESt20_List_const_iteratorIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE8_M_eraseESt14_List_iteratorIS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EE9_M_insertIJEEEvSt14_List_iteratorIS3_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4listIN5mongo8executor12TaskExecutor11EventHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2ERKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEC2IS3_S6_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEEaSEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE6__callIvJS5_EJLm0ELm1ELm2EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEC2EOSI_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEC2IJRKSG_S8_SC_EEEOSE_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE6__callIvJS5_EJLm0ELm1ELm2EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2EOSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2ERKSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEC2IJRKSK_SD_RSE_EEEOSI_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE6__callIvJS5_EJLm0ELm1ELm2ELm3EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2EOSR_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2ERKSR_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEC2IJRKSP_SD_SG_SL_EEEOSN_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE6__callIvJS5_EJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEC2EOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEC2IJRKSC_S8_EEEOSA_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EEclIJS5_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EE6__callIvJEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2EOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEC2IJS4_EEEOS6_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFPFvRKSt8functionIFvvEEES2_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE6__callIvJEJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2EOSV_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2ERKSV_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEC2IJRS5_S8_EEERKST_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE6__callIvJEJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2EOSV_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2ERKSV_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEC2IJRS5_S8_EEERKST_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE6__callIS5_JEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEC2EOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEC2IJRS9_EEEOS8_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EEclIJES5_EET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEE6__callIvJRS5_RS6_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2EOST_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2ERKST_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEC2IJSO_RKSQ_RKSR_RSB_SI_DnEEEOSN_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEEclIJRS5_RS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EE6__callIvJRS5_RS6_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2EOST_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2ERKST_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEC2IJSO_RKSQ_RKSR_RSB_SI_SK_EEEOSN_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EEclIJRS5_RS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEE6__callIvJRS6_EJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEC2EOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEC2IJRSC_RKSE_EEEOSB_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEPS3_St12_PlaceholderILi1EEEEclIJRS6_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE6__callIvJSC_EJLm0ELm1ELm2ELm3ELm4ELm5EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2EOSW_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2ERKSW_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEC2IJSS_RS5_RKSU_RSE_RmSO_EEEOSR_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EEclIJSC_EvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE6__callIvJEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2EOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2ERKSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEC2IJS4_EEERKS8_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EEclIJEvEET0_DpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5mutex4lockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5mutex6unlockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5mutexC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEC2IJS3_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEEC2IRS2_RKS3_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo16OperationContextENS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceEEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceEEEC2IJRS3_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2EOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2ERKSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEEC2IJS3_RS5_RKS7_RS9_RmRKSF_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEC2IRS3_RKS5_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2EOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2ERKSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEEC2IJS3_RKS5_RKS6_RS9_SE_DnEvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2EOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2ERKSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEEC2IJS3_RKS5_RKS6_RS9_SE_SG_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEEC2IRS3_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRPN5mongo16OperationContextERNS0_6StatusEEEC2ES3_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2EOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEC2IRKS1_S5_vEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2EOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEEC2IJRKS1_S5_SB_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2EOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2ERKSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEEC2IJRKS1_RKSA_RSB_EvEEDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2EOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKS1_RKSA_RKSB_RKSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEEC2ERKSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2EOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJSt8functionIFvvEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono13duration_castINS_8durationIlSt5ratioILl1ELl1000EEEElS3_EENSt9enable_ifIXsr13__is_durationIT_EE5valueES6_E4typeERKNS1_IT0_T1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono20__duration_cast_implINS_8durationIlSt5ratioILl1ELl1000EEEES2_ILl1ELl1EElLb1ELb1EE6__castIlS3_EES4_RKNS1_IT_T0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono8durationIlSt5ratioILl1ELl1000EEEC2IlvEERKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono8durationIlSt5ratioILl1ELl1000EEEC2IxvEERKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chronoeqIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chronogtIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chronoltIlSt5ratioILl1ELl1000EElS2_EEbRKNS_8durationIT_T0_EERKNS3_IT1_T2_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread10_Impl_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread10_Impl_baseD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread10_Impl_baseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread2idC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread4swapERS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6threadC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6threadD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6threadaSEOS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE19_M_emplace_back_auxIJRKS3_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EE9push_backERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor12TaskExecutor14CallbackHandleESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo8executor20RemoteCommandRequestESaIS2_EEixEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEC2ES6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEC2ESL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEC2ES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEC2ESP_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFN5mongo4repl10TaskRunner10NextActionEPNS0_16OperationContextERKNS0_6StatusEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFPN5mongo16OperationContextEvEEC2ISt5_BindIFSt7_Mem_fnIMNS0_4repl16StorageInterfaceEFS2_vEEPS9_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFPN5mongo16OperationContextEvEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEEC2ISt5_BindIFSt7_Mem_fnIMNS0_4repl19ReplicationExecutorEFvRKNS2_20RemoteCommandRequestES6_RKNS2_12TaskExecutor14CallbackHandleEmRKS_IFvRKNSH_25RemoteCommandCallbackArgsEEEEEPSD_SE_St12_PlaceholderILi1EESI_mSP_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEE4swapERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2EOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EESC_SG_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESE_SH_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEC2ISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESE_SH_SM_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEaSISt5_BindIFPFvS5_RKS_IFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESE_SH_SM_EEEENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt7is_sameINSt5decayIT_E4typeES7_EESt5__or_IJSt7is_voidIvESt14is_convertibleIDTclcl18__callable_functorclsr3stdE7declvalIRS12_EEEclL_ZSt7declvalIS5_ENSt20add_rvalue_referenceIS10_E4typeEvEEEEvEEEEE5valueERS7_E4typeEOS10_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEE4swapERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2EOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEC2ISt5_BindIFPFvS5_PNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESC_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEE4swapERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2EOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFPFvRKS1_ES1_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS3_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS5_16OperationContextERKNS5_6StatusERKNS5_8executor12TaskExecutor14CallbackHandleEPSt4listINS7_8WorkItemESaISJ_EEPSt5mutexEEPS7_St12_PlaceholderILi1EEST_ILi2EESF_SM_DnEES9_SA_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS3_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS5_16OperationContextERKNS5_6StatusERKNS5_8executor12TaskExecutor14CallbackHandleEPSt4listINS7_8WorkItemESaISJ_EEPSt5mutexEEPS7_St12_PlaceholderILi1EEST_ILi2EESF_SM_SO_EES9_SA_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEC2ISt5_BindIFS_IFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES7_EEvEET_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8functionIFvvEEaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPKSt9type_infoEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS2_4repl19ScatterGatherRunnerEPNS2_10StatusWithINS4_11EventHandleEEEESt12_PlaceholderILi1EESA_SE_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestEESt12_PlaceholderILi1EESD_SG_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEERKNS3_20RemoteCommandRequestERKNS2_10StatusWithINS3_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESD_SG_SL_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS2_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EESA_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFPFvRKSt8functionIFvvEEES4_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_DnEES7_S8_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFS1_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS3_16OperationContextERKNS3_6StatusERKNS3_8executor12TaskExecutor14CallbackHandleEPSt4listINS5_8WorkItemESaISH_EEPSt5mutexEEPS5_St12_PlaceholderILi1EESR_ILi2EESD_SK_SM_EES7_S8_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS3_16OperationContextEvEEPS5_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS3_8executor20RemoteCommandRequestERKNS3_10StatusWithINS6_21RemoteCommandResponseEEERKNS6_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSF_25RemoteCommandCallbackArgsEEEEEPS5_S7_St12_PlaceholderILi1EESG_mSO_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9_Any_data9_M_accessIPSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES6_EEEERT_v' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIDnLb0ELb0EEclIRDnSt5tupleIJRPN5mongo16OperationContextERNS4_6StatusEEEEEOT_SC_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEELb0ELb0EEclIRS4_St5tupleIJRKNS2_12TaskExecutor12CallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo6StatusELb0ELb0EEclIRS1_St5tupleIJEEEEOT_S8_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor12CallbackArgsELb0ELb0EEclIRS3_St5tupleIJEEEEOT_SA_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor14CallbackHandleELb0ELb0EEclIRS3_St5tupleIJRKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor12TaskExecutor14CallbackHandleELb0ELb0EEclIRS3_St5tupleIJRPNS0_16OperationContextERNS0_6StatusEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor20RemoteCommandRequestELb0ELb0EEclIRS2_St5tupleIJRKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIN5mongo8executor20RemoteCommandRequestELb0ELb0EEclIRS2_St5tupleIJRKNS1_12TaskExecutor12CallbackArgsEEEEEOT_SD_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEELb0ELb0EEclIRS6_St5tupleIJRKNS3_12CallbackArgsEEEEEOT_SG_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo16OperationContextELb0ELb0EEclIRS2_St5tupleIJEEEEOT_S9_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl16StorageInterfaceELb0ELb0EEclIRS3_St5tupleIJEEEEOT_SA_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRKNS0_10StatusWithINS0_8executor21RemoteCommandResponseEEEEEEEOT_SG_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRNS0_8executor12TaskExecutor14CallbackHandleEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ReplicationExecutorELb0ELb0EEclIRS3_St5tupleIJRPNS0_16OperationContextERNS0_6StatusEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ScatterGatherRunnerELb0ELb0EEclIRS3_St5tupleIJRKNS0_8executor12TaskExecutor12CallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPN5mongo4repl19ScatterGatherRunnerELb0ELb0EEclIRS3_St5tupleIJRKNS0_8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEOT_SF_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EELb0ELb0EEclIRS7_St5tupleIJRPNS1_16OperationContextERNS1_6StatusEEEEEOT_SJ_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuIPSt5mutexLb0ELb0EEclIRS1_St5tupleIJRPN5mongo16OperationContextERNS6_6StatusEEEEEOT_SE_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo10StatusWithINS5_8executor21RemoteCommandResponseEEEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi1EELb0ELb1EEclISt5tupleIJRPN5mongo16OperationContextERNS5_6StatusEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt12_PlaceholderILi2EELb0ELb1EEclISt5tupleIJRPN5mongo16OperationContextERNS5_6StatusEEEEENS2_6resultIFS2_S1_T_EE4typeERVKS1_RSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0ELb0EEclIRS8_St5tupleIJRKNS1_10StatusWithINS2_21RemoteCommandResponseEEEEEEEOT_SK_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEELb0ELb0EEclIRS8_St5tupleIJRKNS3_12CallbackArgsEEEEEOT_SI_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuISt8functionIFvvEELb0ELb0EEclIRS2_St5tupleIJEEEEOT_S9_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVKSt3_MuImLb0ELb0EEclIRmSt5tupleIJRKN5mongo10StatusWithINS4_8executor21RemoteCommandResponseEEEEEEEOT_SD_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10_ConstructIN5mongo8executor12TaskExecutor14CallbackHandleEJS3_EEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E15difference_typeES7_S7_St18input_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E15difference_typeES7_S7_St18input_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofIN5mongo4repl19ReplicationExecutor8WorkItemEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofIN5mongo8executor12TaskExecutor14CallbackHandleEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofIN5mongo8executor20RemoteCommandRequestEEPT_RS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11make_sharedIN5mongo4repl19ReplicationExecutor5EventEJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEESt10shared_ptrIT_EDpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EN5mongo8executor12TaskExecutor12CallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo16OperationContextEJNS0_6StatusEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl16StorageInterfaceEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl16StorageInterfaceEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJNS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSH_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo4repl19ReplicationExecutorEJSt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSI_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo8executor16NetworkInterfaceEJSt14default_deleteIS2_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPN5mongo8executor16NetworkInterfaceEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPSt10lock_guardISt5mutexEJSt14default_deleteIS2_EEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0EPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEJSt14default_deleteIS4_EEENSt11__add_c_refIT0_E4typeERKSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS8_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo8executor12TaskExecutor12CallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERN5mongo8executor12TaskExecutor14CallbackHandleEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERPN5mongo16OperationContextEJRNS0_6StatusEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ESt12_PlaceholderILi1EEJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ESt8functionIFvvEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1EN5mongo6StatusEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1EN5mongo8executor20RemoteCommandRequestEJSt12_PlaceholderILi1EENS1_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1EPN5mongo4repl19ScatterGatherRunnerEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS5_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1EPN5mongo4repl19ScatterGatherRunnerEJPNS0_10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ERN5mongo6StatusEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJS0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSF_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt12_PlaceholderILi1EEJS0_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSH_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo4repl16StorageInterfaceEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteIN5mongo8executor16NetworkInterfaceEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt14default_deleteISt10lock_guardISt5mutexEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJNS2_20RemoteCommandRequestEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm1ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJNS2_20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2EN5mongo8executor20RemoteCommandRequestEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2EN5mongo8executor20RemoteCommandRequestEJNS0_10StatusWithINS1_21RemoteCommandResponseEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS7_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2EPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS8_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi1EEJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS4_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSD_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi2EEJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm2ESt12_PlaceholderILi2EEJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS2_4repl19ReplicationExecutor8WorkItemESaIS9_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSG_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS6_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSC_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJPSt4listINS0_4repl19ReplicationExecutor8WorkItemESaIS7_EEPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSE_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm3EN5mongo8executor12TaskExecutor14CallbackHandleEJmSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEJDnEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS9_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm4EPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEJPSt5mutexEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSB_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm4EmJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSA_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm5EDnJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS1_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm5EPSt5mutexJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJS3_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm5ESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEJEENSt9__add_refIT0_E4typeERSt11_Tuple_implIXT_EJSA_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15allocate_sharedIN5mongo4repl19ReplicationExecutor5EventESaIS3_EJPS2_RSt14_List_iteratorINS0_8executor12TaskExecutor11EventHandleEEEESt10shared_ptrIT_ERKT0_DpOT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJEESt5tupleIJDpOT_EES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEESt5tupleIJDpOT_EESA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo8executor12TaskExecutor12CallbackArgsEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJRN5mongo8executor12TaskExecutor14CallbackHandleEEESt5tupleIJDpOT_EES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16forward_as_tupleIJRPN5mongo16OperationContextERNS0_6StatusEEESt5tupleIJDpOT_EES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E17iterator_categoryERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E17iterator_categoryERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleEES5_S4_ET0_T_S8_S7_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt32__enable_shared_from_this_helperILN9__gnu_cxx12_Lock_policyE2EEvRKSt14__shared_countIXT_EEz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt13move_iteratorIS4_EET0_T_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPN5mongo8executor12TaskExecutor14CallbackHandleES4_SaIS3_EET0_T_S7_S6_RT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJN5mongo8executor12TaskExecutor12CallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo16OperationContextENS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl16StorageInterfaceEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJPSt19basic_ostringstreamIcSt11char_traitsIcESaIcEESt14default_deleteIS4_EEENSt11__add_c_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRKN5mongo8executor12TaskExecutor12CallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRN5mongo8executor12TaskExecutor14CallbackHandleEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRPN5mongo16OperationContextERNS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJSt8functionIFvvEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo16OperationContextENS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl16StorageInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPN5mongo8executor16NetworkInterfaceESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJPSt10lock_guardISt5mutexESt14default_deleteIS2_EEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJRPN5mongo16OperationContextERNS0_6StatusEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm1EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS2_10StatusWithINS2_8executor12TaskExecutor11EventHandleEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm2EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm3EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm3EJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS4_20RemoteCommandRequestENS3_10StatusWithINS4_21RemoteCommandResponseEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm4EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorENS0_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS4_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS8_25RemoteCommandCallbackArgsEEEEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEDnEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm5EJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES4_ILi2EENS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISB_EEPSt5mutexEENSt9__add_refINSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeEE4typeERSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEJRPS2_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESA_JDpT0_EE4typeEOSA_DpOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEJPS2_RKSt12_PlaceholderILi1EERKSN_ILi2EERSA_SH_DnEENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESW_JDpT0_EE4typeEOSW_DpOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEJPS2_RKSt12_PlaceholderILi1EERKSN_ILi2EERSA_SH_SJ_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESW_JDpT0_EE4typeEOSW_DpOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEJRPS2_RKSt12_PlaceholderILi1EEEENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESH_JDpT0_EE4typeEOSH_DpOSI_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEJPS2_RS4_RKSt12_PlaceholderILi1EERSD_RmSN_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEJRKSt12_PlaceholderILi1EES8_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESG_JDpT0_EE4typeEOSG_DpOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEJRKSt12_PlaceholderILi1EES8_SC_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESK_JDpT0_EE4typeEOSK_DpOSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEJRKSt12_PlaceholderILi1EESD_RSE_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESP_JDpT0_EE4typeEOSP_DpOSQ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEJRKSt12_PlaceholderILi1EESD_SG_SL_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueEST_JDpT0_EE4typeEOST_DpOSU_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRFvRKSt8functionIFvvEEEJS4_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueES8_JDpT0_EE4typeEOS8_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEJRS6_S9_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEJRS6_S9_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESZ_JDpT0_EE4typeEOSZ_DpOS10_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4bindIRKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEJS4_EENSt12_Bind_helperIXsr15__is_socketlikeIT_EE5valueESC_JDpT0_EE4typeEOSC_DpOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRKSaIN5mongo4repl19ReplicationExecutor5EventEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRN5mongo12SharedBufferEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRN5mongo4repl19ReplicationExecutor8WorkItemEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRN5mongo6StatusEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRN5mongo8executor12TaskExecutor11EventHandleEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRN5mongo8executor12TaskExecutor14CallbackHandleEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRNSt6thread2idEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFbRSt9_Any_dataRKS0_St18_Manager_operationEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEEONSt16remove_referenceIT_E4typeEOSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKSt8functionIFvvEEEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor12CallbackArgsEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPKcEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5mongo8executor12TaskExecutor10EventStateEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5mongo8executor12TaskExecutor13CallbackStateEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSsEONSt16remove_referenceIT_E4typeEOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo4repl19ReplicationExecutor5EventEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo8executor12TaskExecutor10EventStateEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt10shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJN5mongo6StatusEEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJN5mongo8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS2_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS6_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJPN5mongo4repl19ScatterGatherRunnerEPNS1_10StatusWithINS1_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES1_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS4_4repl19ReplicationExecutor8WorkItemESaISB_EEDnEEEONSt16remove_referenceIT_E4typeEOSI_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt12_PlaceholderILi1EES1_ILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS4_4repl19ReplicationExecutor8WorkItemESaISB_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS3_20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm1EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS3_20RemoteCommandRequestENS2_10StatusWithINS3_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJN5mongo8executor20RemoteCommandRequestENS1_10StatusWithINS2_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJPN5mongo10StatusWithINS1_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi1EEN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS5_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEDnEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm2EJSt12_PlaceholderILi2EEN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS3_4repl19ReplicationExecutor8WorkItemESaISA_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo10StatusWithINS1_8executor21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS1_4repl19ReplicationExecutor8WorkItemESaIS8_EEDnEEEONSt16remove_referenceIT_E4typeEOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEPSt4listINS1_4repl19ReplicationExecutor8WorkItemESaIS8_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm3EJN5mongo8executor12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS5_EEDnEEEONSt16remove_referenceIT_E4typeEOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS5_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm4EJmSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJDnEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJPSt5mutexEEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm5EJSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt11_Tuple_implILm6EJEEEONSt16remove_referenceIT_E4typeEOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt12__shared_ptrIN5mongo8executor12TaskExecutor10EventStateELN9__gnu_cxx12_Lock_policyE2EEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt12__shared_ptrIN5mongo8executor12TaskExecutor13CallbackStateELN9__gnu_cxx12_Lock_policyE2EEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEONSt16remove_referenceIT_E4typeEOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS1_4repl19ScatterGatherRunnerEPNS1_10StatusWithINS3_11EventHandleEEEESt12_PlaceholderILi1EES9_SD_EEEONSt16remove_referenceIT_E4typeEOSM_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestEESt12_PlaceholderILi1EESC_SF_EEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestERKNS1_10StatusWithINS2_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESC_SF_SK_EEEONSt16remove_referenceIT_E4typeEOSV_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS1_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES9_EEEONSt16remove_referenceIT_E4typeEOSI_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFPFvRKSt8functionIFvvEEES3_EEEONSt16remove_referenceIT_E4typeEOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFS0_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEES6_S7_EEEONSt16remove_referenceIT_E4typeEOSZ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFS0_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EES6_S7_EEEONSt16remove_referenceIT_E4typeEOSZ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS2_16OperationContextEvEEPS4_EEEONSt16remove_referenceIT_E4typeEOSF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEEONSt16remove_referenceIT_E4typeEOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEEONSt16remove_referenceIT_E4typeEOSX_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS2_8executor12TaskExecutor14CallbackHandleEEEPS4_St12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS2_8executor20RemoteCommandRequestERKNS2_10StatusWithINS5_21RemoteCommandResponseEEERKNS5_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSE_25RemoteCommandCallbackArgsEEEEEPS4_S6_St12_PlaceholderILi1EESF_mSN_EEEONSt16remove_referenceIT_E4typeEOS10_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES5_EEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJN5mongo8executor12TaskExecutor12CallbackArgsEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo16OperationContextENS1_6StatusEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl16StorageInterfaceEEEEONSt16remove_referenceIT_E4typeEOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorENS1_8executor20RemoteCommandRequestESt12_PlaceholderILi1EENS5_12TaskExecutor14CallbackHandleEmSt8functionIFvRKNS9_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSK_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES5_ILi2EENS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISC_EEDnEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJPN5mongo4repl19ReplicationExecutorESt12_PlaceholderILi1EES5_ILi2EENS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISC_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EEPN5mongo4repl19ScatterGatherRunnerEPNS3_10StatusWithINS3_8executor12TaskExecutor11EventHandleEEEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS5_20RemoteCommandRequestEEEEONSt16remove_referenceIT_E4typeEOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt12_PlaceholderILi1EESt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEENS5_20RemoteCommandRequestENS4_10StatusWithINS5_21RemoteCommandResponseEEEEEEONSt16remove_referenceIT_E4typeEOSJ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt5tupleIJSt8functionIFvvEEEEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEEONSt16remove_referenceIT_E4typeEOSQ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor12TaskExecutor14CallbackHandleEEEEONSt16remove_referenceIT_E4typeEOSE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEEONSt16remove_referenceIT_E4typeEOSU_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEONSt16remove_referenceIT_E4typeEOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSt9_Any_dataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapINSt6thread2idEEvRT_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPFbRSt9_Any_dataRKS0_St18_Manager_operationEEvRT_S8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor12CallbackArgsEEEvRT_SC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPFvRKSt9_Any_dataRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEvRT_SC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5mongo8executor12TaskExecutor10EventStateEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5mongo8executor12TaskExecutor13CallbackStateEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapISt9_Any_dataEvRT_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIDnEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIKSaIN5mongo4repl19ReplicationExecutor5EventEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIMN5mongo4repl16StorageInterfaceEFPNS0_16OperationContextEvEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvPNS0_16OperationContextERKNS0_6StatusERKNS0_8executor12TaskExecutor14CallbackHandleEPSt4listINS2_8WorkItemESaISE_EEPSt5mutexEEOT_RNSt16remove_referenceISM_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor12TaskExecutor14CallbackHandleEEEOT_RNSt16remove_referenceISA_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIMN5mongo4repl19ReplicationExecutorEFvRKNS0_8executor20RemoteCommandRequestERKNS0_10StatusWithINS3_21RemoteCommandResponseEEERKNS3_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSC_25RemoteCommandCallbackArgsEEEEEOT_RNSt16remove_referenceISQ_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo4repl19ReplicationExecutor8WorkItemEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo6StatusEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo16OperationContextEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo4repl16StorageInterfaceEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo4repl19ReplicationExecutorEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPN5mongo4repl19ScatterGatherRunnerEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEOT_RNSt16remove_referenceIS8_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPSt5mutexEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRDnEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEEOT_RNSt16remove_referenceISF_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEEOT_RNSt16remove_referenceISJ_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEEOT_RNSt16remove_referenceISO_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRFvRKSt8functionIFvvEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo4repl19ReplicationExecutor8WorkItemEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo6StatusEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt12_PlaceholderILi1EEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt12_PlaceholderILi2EEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEEOT_RNSt16remove_referenceISX_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEEOT_RNSt16remove_referenceISX_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt8functionIFvvEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRN5mongo10StatusWithINS0_8executor21RemoteCommandResponseEEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRN5mongo6StatusEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRN5mongo8executor12TaskExecutor12CallbackArgsEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRN5mongo8executor12TaskExecutor14CallbackHandleEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRN5mongo8executor20RemoteCommandRequestEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo10StatusWithINS0_8executor12TaskExecutor11EventHandleEEEEOT_RNSt16remove_referenceIS8_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo16OperationContextEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl16StorageInterfaceEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl19ReplicationExecutorEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo4repl19ScatterGatherRunnerEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPN5mongo8executor16NetworkInterfaceEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt10lock_guardISt5mutexEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt4listIN5mongo4repl19ReplicationExecutor8WorkItemESaIS4_EEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt5mutexEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSt14_List_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceISA_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSt8functionIFvvEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRmEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt12_PlaceholderILi1EEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt12_PlaceholderILi2EEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt14default_deleteIN5mongo4repl16StorageInterfaceEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt14default_deleteIN5mongo8executor16NetworkInterfaceEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt14default_deleteISt10lock_guardISt5mutexEEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS3_25RemoteCommandCallbackArgsEEERKNS2_20RemoteCommandRequestERKNS1_10StatusWithINS2_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESC_SF_SK_EEEOT_RNSt16remove_referenceIST_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt8functionIFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEEEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt8functionIFvvEEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardImEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIN5mongo8executor12TaskExecutor14CallbackHandleEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIN5mongo8executor20RemoteCommandRequestEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor12TaskExecutor14CallbackHandleEEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor12TaskExecutor14CallbackHandleES3_EvT_S5_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor20RemoteCommandRequestEEvT_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPN5mongo8executor20RemoteCommandRequestES2_EvT_S4_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceISt20_List_const_iteratorIN5mongo4repl19ReplicationExecutor8WorkItemEEENSt15iterator_traitsIT_E15difference_typeES7_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceISt20_List_const_iteratorIN5mongo8executor12TaskExecutor11EventHandleEEENSt15iterator_traitsIT_E15difference_typeES7_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8for_eachIN9__gnu_cxx17__normal_iteratorIPN5mongo8executor12TaskExecutor14CallbackHandleESt6vectorIS5_SaIS5_EEEESt5_BindIFSt7_Mem_fnIMNS2_4repl19ReplicationExecutorEFvRKS5_EEPSE_St12_PlaceholderILi1EEEEET0_T_SQ_SP_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9make_pairIN5mongo4repl19ReplicationExecutor8WorkItemENS0_8executor12TaskExecutor14CallbackHandleEESt4pairINSt17__decay_and_stripIT_E6__typeENS8_IT0_E6__typeEEOS9_OSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9make_pairIRKN5mongo4repl19ReplicationExecutor8WorkItemERKNS0_8executor12TaskExecutor14CallbackHandleEESt4pairINSt17__decay_and_stripIT_E6__typeENSC_IT0_E6__typeEEOSD_OSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIPN5mongo8executor12TaskExecutor14CallbackHandleEEbRKSt13move_iteratorIT_ES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqNSt6thread2idES0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStneIPN5mongo8executor12TaskExecutor14CallbackHandleEEbRKSt13move_iteratorIT_ES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutor5EventE' size='24' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutor8CallbackE' size='24' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutorE' size='24' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5mongo4repl22ScatterGatherAlgorithmE' size='16' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt6thread10_Impl_baseE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKSt8functionIFvvEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17_Weak_result_typeISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt19_Sp_make_shared_tag' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKSt8functionIFvvEEEE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt22_Weak_result_type_implISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFPFvRKSt8functionIFvvEEES2_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutor5EventE' size='41' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutor8CallbackE' size='44' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutorE' size='35' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5mongo4repl22ScatterGatherAlgorithmE' size='38' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSNSt6thread10_Impl_baseE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE' size='47' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='95' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='52' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='145' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='156' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='205' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='120' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKSt8functionIFvvEEEE' size='47' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='253' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='254' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='95' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='251' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17_Weak_result_typeISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='87' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt19_Sp_make_shared_tag' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='262' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='263' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='104' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='260' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='96' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='150' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='161' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='210' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='125' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKSt8functionIFvvEEEE' size='52' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='258' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='259' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='100' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='256' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='92' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='106' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE' size='162' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE' size='173' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE' size='225' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE' size='134' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFPFvRKSt8functionIFvvEEES2_EE' size='39' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE' size='242' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE' size='243' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE' size='88' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE' size='276' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE' size='79' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutor5EventE' size='56' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutor8CallbackE' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutorE' size='144' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5mongo4repl22ScatterGatherAlgorithmE' size='56' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt6thread10_Impl_baseE' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN5mongo7BSONObjC1EvE21kEmptyObjectPrototype' size='5' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutor5EventE' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutor8CallbackE' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo4repl19ReplicationExecutorE' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5mongo4repl22ScatterGatherAlgorithmE' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt6thread10_Impl_baseE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeIPFvRKSt8functionIFvvEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17_Weak_result_typeISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt19_Sp_make_shared_tag' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Maybe_get_result_typeILb1ESt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implIPFvRKSt8functionIFvvEEEE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt22_Weak_result_type_implISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFPFvRKSt8functionIFvvEEES2_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutor5EventE' size='41' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutor8CallbackE' size='44' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo4repl19ReplicationExecutorE' size='35' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5mongo4repl22ScatterGatherAlgorithmE' size='38' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSNSt6thread10_Impl_baseE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE' size='47' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='95' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='52' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='145' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='156' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='205' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='120' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeIPFvRKSt8functionIFvvEEEE' size='47' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='253' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='254' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='95' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='251' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17_Weak_result_typeISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='87' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt19_Sp_make_shared_tag' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='262' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='263' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='104' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='260' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Maybe_get_result_typeILb1ESt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='96' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEEE' size='150' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEEE' size='161' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEEE' size='210' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEEE' size='125' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implIPFvRKSt8functionIFvvEEEE' size='52' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_DnEEE' size='258' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS2_16OperationContextERKNS2_6StatusERKNS2_8executor12TaskExecutor14CallbackHandleEPSt4listINS4_8WorkItemESaISG_EEPSt5mutexEEPS4_St12_PlaceholderILi1EESQ_ILi2EESC_SJ_SL_EEE' size='259' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEE' size='100' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEE' size='256' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt22_Weak_result_type_implISt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEEE' size='92' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='106' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsEPNS0_4repl19ScatterGatherRunnerEPNS0_10StatusWithINS2_11EventHandleEEEESt12_PlaceholderILi1EES8_SC_EE' size='162' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestEESt12_PlaceholderILi1EESB_SE_EE' size='173' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor12CallbackArgsERKSt8functionIFvRKNS2_25RemoteCommandCallbackArgsEEERKNS1_20RemoteCommandRequestERKNS0_10StatusWithINS1_21RemoteCommandResponseEEEESt12_PlaceholderILi1EESB_SE_SJ_EE' size='225' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFPFvRKN5mongo8executor12TaskExecutor25RemoteCommandCallbackArgsEPNS0_4repl19ScatterGatherRunnerEESt12_PlaceholderILi1EES8_EE' size='134' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFPFvRKSt8functionIFvvEEES2_EE' size='39' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_DnEES5_S6_EE' size='242' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFS_IFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvPNS1_16OperationContextERKNS1_6StatusERKNS1_8executor12TaskExecutor14CallbackHandleEPSt4listINS3_8WorkItemESaISF_EEPSt5mutexEEPS3_St12_PlaceholderILi1EESP_ILi2EESB_SI_SK_EES5_S6_EE' size='243' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFSt7_Mem_fnIMN5mongo4repl16StorageInterfaceEFPNS1_16OperationContextEvEEPS3_EE' size='88' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFSt7_Mem_fnIMN5mongo4repl19ReplicationExecutorEFvRKNS1_8executor20RemoteCommandRequestERKNS1_10StatusWithINS4_21RemoteCommandResponseEEERKNS4_12TaskExecutor14CallbackHandleEmRKSt8functionIFvRKNSD_25RemoteCommandCallbackArgsEEEEEPS3_S5_St12_PlaceholderILi1EESE_mSM_EE' size='276' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5_BindIFSt8functionIFvRKN5mongo8executor12TaskExecutor12CallbackArgsEEES4_EE' size='79' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutor5EventE' size='56' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutor8CallbackE' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo4repl19ReplicationExecutorE' size='144' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5mongo4repl22ScatterGatherAlgorithmE' size='56' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt6thread10_Impl_baseE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15_Sp_counted_ptrIPN5mongo4repl19ReplicationExecutor8CallbackELN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt23_Sp_counted_ptr_inplaceIN5mongo4repl19ReplicationExecutor5EventESaIS3_ELN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN5mongo7BSONObjC1EvE21kEmptyObjectPrototype' size='5' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/mongo/db/repl/replication_executor.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 524d5b17742ee35314e10953f274cecab4bef647..c69d6b2e0a7fdfa83588737a7c67b78aa9a85c22 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='dbus_address_entries_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_address_entry_get_method' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_address_entry_get_value' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_address_escape_value' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_address_unescape_value' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_add_match' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_get' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_get_id' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_get_private' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_get_unique_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_get_unix_user' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_name_has_owner' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_register' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_release_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_remove_match' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_request_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_set_unique_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_bus_start_service_by_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_add_filter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_borrow_message' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_can_send_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_close' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_dispatch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_flush' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_free_preallocated_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_adt_audit_session_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_dispatch_status' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_is_anonymous' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_is_authenticated' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_is_connected' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_max_message_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_max_message_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_max_received_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_max_received_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_object_path_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_outgoing_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_outgoing_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_server_id' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_socket' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_unix_fd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_unix_process_id' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_unix_user' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_get_windows_user' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_has_messages_to_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_list_registered' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_open_private' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_pop_message' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_preallocate_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_read_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_read_write_dispatch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_ref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_register_fallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_register_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_remove_filter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_return_message' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_send_preallocated' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_send_with_reply' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_send_with_reply_and_block' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_allow_anonymous' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_change_sigpipe' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_dispatch_status_function' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_exit_on_disconnect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_max_message_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_max_message_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_max_received_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_max_received_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_route_peer_messages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_timeout_functions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_unix_user_function' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_wakeup_main_function' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_watch_functions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_set_windows_user_function' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_steal_borrowed_message' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_try_register_fallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_try_register_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_unref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_connection_unregister_object_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_error_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_error_has_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_error_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_error_is_set' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_free_string_array' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_get_local_machine_id' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_get_version' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_internal_do_not_use_create_uuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_internal_do_not_use_get_uuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_malloc0' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_append_args' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_append_args_valist' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_contains_unix_fds' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_copy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_demarshal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_demarshal_bytes_needed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_args' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_args_valist' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_auto_start' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_destination' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_interface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_member' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_no_reply' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_path_decomposed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_reply_serial' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_sender' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_serial' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_get_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_destination' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_interface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_member' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_sender' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_has_signature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_is_error' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_is_method_call' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_is_signal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_abandon_container' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_append_basic' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_append_fixed_array' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_close_container' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_arg_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_array_len' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_basic' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_element_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_fixed_array' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_has_next' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_init_append' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_next' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_open_container' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_iter_recurse' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_lock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_marshal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new_error' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new_error_printf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new_method_call' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new_method_return' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_new_signal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_ref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_auto_start' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_destination' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_interface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_member' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_no_reply' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_reply_serial' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_sender' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_set_serial' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_type_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_type_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_message_unref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_move_error' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_parse_address' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_block' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_get_completed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_ref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_set_notify' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_steal_reply' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_pending_call_unref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_allocate_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_disconnect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_free_data_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_get_address' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_get_id' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_get_is_connected' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_listen' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_ref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_set_auth_mechanisms' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_set_new_connection_function' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_set_timeout_functions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_set_watch_functions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_server_unref' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_set_error' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_set_error_const' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_set_error_from_message' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_setenv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_get_current_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_get_element_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_get_signature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_next' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_iter_recurse' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_validate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_signature_validate_single' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_threads_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_threads_init_default' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_timeout_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_timeout_get_enabled' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_timeout_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_timeout_handle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_timeout_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_type_is_basic' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_type_is_container' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_type_is_fixed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_type_is_valid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_bus_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_error_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_interface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_member' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_validate_utf8' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_enabled' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_fd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_flags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_socket' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_get_unix_fd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_handle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dbus_watch_set_data' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entries_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entry_get_method' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_address_entry_get_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_address_escape_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_address_unescape_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_add_match' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_private' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_unique_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_get_unix_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_name_has_owner' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_register' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_release_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_remove_match' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_request_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_set_unique_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_bus_start_service_by_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_add_filter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_borrow_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_can_send_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_dispatch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_flush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_free_preallocated_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_adt_audit_session_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_dispatch_status' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_anonymous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_authenticated' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_is_connected' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_message_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_message_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_received_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_max_received_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_object_path_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_outgoing_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_outgoing_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_server_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_process_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_unix_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_get_windows_user' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_has_messages_to_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_list_registered' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_open_private' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_pop_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_preallocate_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_read_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_read_write_dispatch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_register_fallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_register_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_remove_filter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_return_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_preallocated' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_with_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_send_with_reply_and_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_allow_anonymous' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_change_sigpipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_dispatch_status_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_exit_on_disconnect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_message_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_message_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_received_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_max_received_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_route_peer_messages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_timeout_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_unix_user_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_wakeup_main_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_watch_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_set_windows_user_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_steal_borrowed_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_try_register_fallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_try_register_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_connection_unregister_object_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_error_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_error_has_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_error_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_error_is_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_free_string_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_get_local_machine_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_get_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_internal_do_not_use_create_uuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_internal_do_not_use_get_uuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_malloc0' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_append_args' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_append_args_valist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_contains_unix_fds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_demarshal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_demarshal_bytes_needed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_args' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_args_valist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_auto_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_no_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_path_decomposed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_reply_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_get_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_has_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_method_call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_is_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_abandon_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_append_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_append_fixed_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_close_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_arg_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_array_len' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_element_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_fixed_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_has_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_init_append' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_open_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_iter_recurse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_marshal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_error_printf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_method_call' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_method_return' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_new_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_auto_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_destination' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_no_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_reply_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_sender' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_set_serial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_type_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_type_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_message_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_move_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_parse_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_get_completed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_set_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_steal_reply' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_pending_call_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_allocate_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_disconnect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_free_data_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_id' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_get_is_connected' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_ref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_auth_mechanisms' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_new_connection_function' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_timeout_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_set_watch_functions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_server_unref' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error_const' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_set_error_from_message' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_setenv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_current_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_element_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_get_signature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_iter_recurse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_validate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_signature_validate_single' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_threads_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_threads_init_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_enabled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_timeout_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_basic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_container' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_fixed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_type_is_valid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_bus_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_error_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_interface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_member' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_validate_utf8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_enabled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_get_unix_fd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dbus_watch_set_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='dbus-address.c' language='LANG_C89'>
     <type-decl name='char' size-in-bits='8' id='type-id-1'/>
index 24111ce674ca7b03ec57c92727dd5ff34ea92e87..9896ee6dbf097ebc572418e5b2a47508d8c00f14 100644 (file)
@@ -7,65 +7,65 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='gluBeginCurve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBeginPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBeginSurface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBeginTrim' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild1DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild1DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild2DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild2DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild3DMipmapLevels' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluBuild3DMipmaps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluCheckExtension' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluCylinder' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluDeleteNurbsRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluDeleteQuadric' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluDeleteTess' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluDisk' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluEndCurve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluEndPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluEndSurface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluEndTrim' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluErrorString' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluGetNurbsProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluGetString' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluGetTessProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluLoadSamplingMatrices' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluLookAt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNewNurbsRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNewQuadric' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNewTess' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNextContour' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsCallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsCallbackData' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsCallbackDataEXT' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsCurve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluNurbsSurface' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluOrtho2D' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluPartialDisk' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluPerspective' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluPickMatrix' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluProject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluPwlCurve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluQuadricCallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluQuadricDrawStyle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluQuadricNormals' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluQuadricOrientation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluQuadricTexture' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluScaleImage' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluSphere' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessBeginContour' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessBeginPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessCallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessEndContour' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessEndPolygon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessNormal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluTessVertex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluUnProject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='gluUnProject4' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='gluBeginCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBeginPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBeginSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBeginTrim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild1DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild1DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild2DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild2DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild3DMipmapLevels' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluBuild3DMipmaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluCheckExtension' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluCylinder' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluDeleteNurbsRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluDeleteQuadric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluDeleteTess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluDisk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluEndCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluEndPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluEndSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluEndTrim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluErrorString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluGetNurbsProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluGetString' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluGetTessProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluLoadSamplingMatrices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluLookAt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNewNurbsRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNewQuadric' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNewTess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNextContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallbackData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCallbackDataEXT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluNurbsSurface' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluOrtho2D' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluPartialDisk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluPerspective' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluPickMatrix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluProject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluPwlCurve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluQuadricCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluQuadricDrawStyle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluQuadricNormals' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluQuadricOrientation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluQuadricTexture' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluScaleImage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluSphere' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessBeginContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessBeginPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessEndContour' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessEndPolygon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessNormal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluTessVertex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluUnProject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gluUnProject4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='libutil/error.c' language='LANG_C99'>
     <type-decl name='unsigned char' size-in-bits='8' id='type-id-1'/>
index 4b56e485e5af17e2c2adbb27dd8f1b705f761a7f..5e71b82c221ccc0429164ee86972c12d09bb9a74 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='AnnotateBenignRace' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateBenignRaceSized' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateCondVarSignal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateCondVarSignalAll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateCondVarWait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateEnableRaceDetection' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateExpectRace' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateFlushExpectedRaces' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateFlushState' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateHappensAfter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateHappensBefore' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreReadsBegin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreReadsEnd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreSyncBegin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreSyncEnd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreWritesBegin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateIgnoreWritesEnd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateMemoryIsInitialized' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateMutexIsNotPHB' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateMutexIsUsedAsCondVar' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateNoOp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotatePCQCreate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotatePCQDestroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotatePCQGet' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotatePCQPut' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotatePublishMemoryRange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateRWLockAcquired' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateRWLockCreate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateRWLockCreateStatic' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateRWLockDestroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateRWLockReleased' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateThreadName' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateTraceMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='AnnotateUnpublishMemoryRange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ThreadSanitizerQuery' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='WTFAnnotateBenignRaceSized' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='WTFAnnotateHappensAfter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='WTFAnnotateHappensBefore' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__sanitizer11CheckFailedEPKciS1_yy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__sanitizer7OnPrintEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6__tsan10OnFinalizeEb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6__tsan8OnReportEPKNS_10ReportDescEb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_close' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_create_state' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_dwarf_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_get_view' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_initialize' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_pcinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_qsort' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_release_view' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_syminfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_vector_finish' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_vector_grow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_backtrace_vector_release' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_fill_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_fill_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_fill_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_init_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_mangled_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_print' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_print_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_memcmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_memcpy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_memset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_strcmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_strlen' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_strncmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_internal_strnlen' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_java_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_java_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__close' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_atexit' type='func-type' binding='weak-binding' alias='__interceptor___cxa_atexit' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_abort' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_release' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__fxstat' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__fxstat64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___close' type='func-type' binding='global-binding' alias='__close' is-defined='yes'/>
-    <elf-symbol name='__interceptor___cxa_atexit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___fxstat' type='func-type' binding='global-binding' alias='__fxstat' is-defined='yes'/>
-    <elf-symbol name='__interceptor___fxstat64' type='func-type' binding='global-binding' alias='__fxstat64' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_fscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_scanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_sscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_vfscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_vscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___isoc99_vsscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___libc_memalign' type='func-type' binding='global-binding' alias='__libc_memalign' is-defined='yes'/>
-    <elf-symbol name='__interceptor___lxstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___lxstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___res_iclose' type='func-type' binding='global-binding' alias='__res_iclose' is-defined='yes'/>
-    <elf-symbol name='__interceptor___sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___xpg_strerror_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor___xstat' type='func-type' binding='global-binding' alias='__xstat' is-defined='yes'/>
-    <elf-symbol name='__interceptor___xstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor__exit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor__setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_abort' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_accept' type='func-type' binding='global-binding' alias='accept' is-defined='yes'/>
-    <elf-symbol name='__interceptor_accept4' type='func-type' binding='global-binding' alias='accept4' is-defined='yes'/>
-    <elf-symbol name='__interceptor_asctime' type='func-type' binding='global-binding' alias='asctime' is-defined='yes'/>
-    <elf-symbol name='__interceptor_asctime_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_atexit' type='func-type' binding='global-binding' alias='atexit' is-defined='yes'/>
-    <elf-symbol name='__interceptor_backtrace' type='func-type' binding='global-binding' alias='backtrace' is-defined='yes'/>
-    <elf-symbol name='__interceptor_backtrace_symbols' type='func-type' binding='global-binding' alias='backtrace_symbols' is-defined='yes'/>
-    <elf-symbol name='__interceptor_bind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_calloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_canonicalize_file_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_clock_getres' type='func-type' binding='global-binding' alias='clock_getres' is-defined='yes'/>
-    <elf-symbol name='__interceptor_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_close' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_confstr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_connect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_creat' type='func-type' binding='global-binding' alias='creat' is-defined='yes'/>
-    <elf-symbol name='__interceptor_creat64' type='func-type' binding='global-binding' alias='creat64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ctime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ctime_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_dlclose' type='func-type' binding='global-binding' alias='dlclose' is-defined='yes'/>
-    <elf-symbol name='__interceptor_dlopen' type='func-type' binding='global-binding' alias='dlopen' is-defined='yes'/>
-    <elf-symbol name='__interceptor_drand48_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_dup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_dup3' type='func-type' binding='global-binding' alias='dup3' is-defined='yes'/>
-    <elf-symbol name='__interceptor_epoll_create' type='func-type' binding='global-binding' alias='epoll_create' is-defined='yes'/>
-    <elf-symbol name='__interceptor_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_aton' type='func-type' binding='global-binding' alias='ether_aton' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_aton_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_hostton' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_line' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_ntoa' type='func-type' binding='global-binding' alias='ether_ntoa' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_ntoa_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ether_ntohost' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fclose' type='func-type' binding='global-binding' alias='fclose' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fflush' type='func-type' binding='global-binding' alias='fflush' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fopen' type='func-type' binding='global-binding' alias='fopen' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fork' type='func-type' binding='global-binding' alias='fork' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fread' type='func-type' binding='global-binding' alias='fread' is-defined='yes'/>
-    <elf-symbol name='__interceptor_free' type='func-type' binding='global-binding' alias='free' is-defined='yes'/>
-    <elf-symbol name='__interceptor_freopen' type='func-type' binding='global-binding' alias='freopen' is-defined='yes'/>
-    <elf-symbol name='__interceptor_frexp' type='func-type' binding='global-binding' alias='frexp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_frexpf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_frexpl' type='func-type' binding='global-binding' alias='frexpl' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fscanf' type='func-type' binding='global-binding' alias='fscanf' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstat' type='func-type' binding='global-binding' alias='fstat' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstat64' type='func-type' binding='global-binding' alias='fstat64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstatfs' type='func-type' binding='global-binding' alias='fstatfs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstatvfs' type='func-type' binding='global-binding' alias='fstatvfs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fstatvfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_fwrite' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_get_current_dir_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getaddrinfo' type='func-type' binding='global-binding' alias='getaddrinfo' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getdelim' type='func-type' binding='global-binding' alias='getdelim' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getgroups' type='func-type' binding='global-binding' alias='getgroups' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyaddr' type='func-type' binding='global-binding' alias='gethostbyaddr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyaddr_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyname2' type='func-type' binding='global-binding' alias='gethostbyname2' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyname2_r' type='func-type' binding='global-binding' alias='gethostbyname2_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostbyname_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostent' type='func-type' binding='global-binding' alias='gethostent' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gethostent_r' type='func-type' binding='global-binding' alias='gethostent_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getline' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getmntent' type='func-type' binding='global-binding' alias='getmntent' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getmntent_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getsockname' type='func-type' binding='global-binding' alias='getsockname' is-defined='yes'/>
-    <elf-symbol name='__interceptor_getsockopt' type='func-type' binding='global-binding' alias='getsockopt' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gmtime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_gmtime_r' type='func-type' binding='global-binding' alias='gmtime_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_iconv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_inet_aton' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_inet_ntop' type='func-type' binding='global-binding' alias='inet_ntop' is-defined='yes'/>
-    <elf-symbol name='__interceptor_inet_pton' type='func-type' binding='global-binding' alias='inet_pton' is-defined='yes'/>
-    <elf-symbol name='__interceptor_initgroups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_inotify_init' type='func-type' binding='global-binding' alias='inotify_init' is-defined='yes'/>
-    <elf-symbol name='__interceptor_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_kill' type='func-type' binding='global-binding' alias='kill' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgamma' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgamma_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgammaf' type='func-type' binding='global-binding' alias='lgammaf' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgammaf_r' type='func-type' binding='global-binding' alias='lgammaf_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgammal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lgammal_r' type='func-type' binding='global-binding' alias='lgammal_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_listen' type='func-type' binding='global-binding' alias='listen' is-defined='yes'/>
-    <elf-symbol name='__interceptor_localtime' type='func-type' binding='global-binding' alias='localtime' is-defined='yes'/>
-    <elf-symbol name='__interceptor_localtime_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_longjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lrand48_r' type='func-type' binding='global-binding' alias='lrand48_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lstat' type='func-type' binding='global-binding' alias='lstat' is-defined='yes'/>
-    <elf-symbol name='__interceptor_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_malloc_usable_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mbsnrtowcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mbsrtowcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mbstowcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memalign' type='func-type' binding='global-binding' alias='memalign' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memchr' type='func-type' binding='global-binding' alias='memchr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memcmp' type='func-type' binding='global-binding' alias='memcmp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memcpy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memmove' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memrchr' type='func-type' binding='global-binding' alias='memrchr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_memset' type='func-type' binding='global-binding' alias='memset' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_mmap64' type='func-type' binding='global-binding' alias='mmap64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_modf' type='func-type' binding='global-binding' alias='modf' is-defined='yes'/>
-    <elf-symbol name='__interceptor_modff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_modfl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_munlockall' type='func-type' binding='global-binding' alias='munlockall' is-defined='yes'/>
-    <elf-symbol name='__interceptor_munmap' type='func-type' binding='global-binding' alias='munmap' is-defined='yes'/>
-    <elf-symbol name='__interceptor_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_on_exit' type='func-type' binding='global-binding' alias='on_exit' is-defined='yes'/>
-    <elf-symbol name='__interceptor_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_open64' type='func-type' binding='global-binding' alias='open64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_opendir' type='func-type' binding='global-binding' alias='opendir' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pipe' type='func-type' binding='global-binding' alias='pipe' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pipe2' type='func-type' binding='global-binding' alias='pipe2' is-defined='yes'/>
-    <elf-symbol name='__interceptor_poll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_posix_memalign' type='func-type' binding='global-binding' alias='posix_memalign' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_prctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pread' type='func-type' binding='global-binding' alias='pread' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pread64' type='func-type' binding='global-binding' alias='pread64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_preadv64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getaffinity_np' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getdetachstate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getguardsize' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getinheritsched' type='func-type' binding='global-binding' alias='pthread_attr_getinheritsched' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getschedparam' type='func-type' binding='global-binding' alias='pthread_attr_getschedparam' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getschedpolicy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getscope' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getstack' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_attr_getstacksize' type='func-type' binding='global-binding' alias='pthread_attr_getstacksize' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_barrier_destroy' type='func-type' binding='global-binding' alias='pthread_barrier_destroy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_barrier_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_barrier_wait' type='func-type' binding='global-binding' alias='pthread_barrier_wait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_broadcast' type='func-type' binding='global-binding' alias='pthread_cond_broadcast' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_destroy' type='func-type' binding='global-binding' alias='pthread_cond_destroy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_init' type='func-type' binding='global-binding' alias='pthread_cond_init' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_signal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_timedwait' type='func-type' binding='global-binding' alias='pthread_cond_timedwait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_cond_wait' type='func-type' binding='global-binding' alias='pthread_cond_wait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_create' type='func-type' binding='global-binding' alias='pthread_create' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_detach' type='func-type' binding='global-binding' alias='pthread_detach' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_getschedparam' type='func-type' binding='global-binding' alias='pthread_getschedparam' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_join' type='func-type' binding='global-binding' alias='pthread_join' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_kill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_destroy' type='func-type' binding='global-binding' alias='pthread_mutex_destroy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_lock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_timedlock' type='func-type' binding='global-binding' alias='pthread_mutex_timedlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_trylock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_mutex_unlock' type='func-type' binding='global-binding' alias='pthread_mutex_unlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_once' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_destroy' type='func-type' binding='global-binding' alias='pthread_rwlock_destroy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_init' type='func-type' binding='global-binding' alias='pthread_rwlock_init' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_rdlock' type='func-type' binding='global-binding' alias='pthread_rwlock_rdlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_timedrdlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_timedwrlock' type='func-type' binding='global-binding' alias='pthread_rwlock_timedwrlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_tryrdlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_trywrlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_unlock' type='func-type' binding='global-binding' alias='pthread_rwlock_unlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_rwlock_wrlock' type='func-type' binding='global-binding' alias='pthread_rwlock_wrlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_setname_np' type='func-type' binding='global-binding' alias='pthread_setname_np' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_spin_destroy' type='func-type' binding='global-binding' alias='pthread_spin_destroy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_spin_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_spin_lock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_spin_trylock' type='func-type' binding='global-binding' alias='pthread_spin_trylock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pthread_spin_unlock' type='func-type' binding='global-binding' alias='pthread_spin_unlock' is-defined='yes'/>
-    <elf-symbol name='__interceptor_ptrace' type='func-type' binding='global-binding' alias='ptrace' is-defined='yes'/>
-    <elf-symbol name='__interceptor_puts' type='func-type' binding='global-binding' alias='puts' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pvalloc' type='func-type' binding='global-binding' alias='pvalloc' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pwrite' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_pwritev64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_raise' type='func-type' binding='global-binding' alias='raise' is-defined='yes'/>
-    <elf-symbol name='__interceptor_random_r' type='func-type' binding='global-binding' alias='random_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_readdir' type='func-type' binding='global-binding' alias='readdir' is-defined='yes'/>
-    <elf-symbol name='__interceptor_readdir64' type='func-type' binding='global-binding' alias='readdir64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_readdir64_r' type='func-type' binding='global-binding' alias='readdir64_r' is-defined='yes'/>
-    <elf-symbol name='__interceptor_readdir_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_readv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_realpath' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_recv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_recvmsg' type='func-type' binding='global-binding' alias='recvmsg' is-defined='yes'/>
-    <elf-symbol name='__interceptor_remquo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_remquof' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_remquol' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_scandir' type='func-type' binding='global-binding' alias='scandir' is-defined='yes'/>
-    <elf-symbol name='__interceptor_scandir64' type='func-type' binding='global-binding' alias='scandir64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_scanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_getvalue' type='func-type' binding='global-binding' alias='sem_getvalue' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_post' type='func-type' binding='global-binding' alias='sem_post' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_timedwait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_trywait' type='func-type' binding='global-binding' alias='sem_trywait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sem_wait' type='func-type' binding='global-binding' alias='sem_wait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sendmsg' type='func-type' binding='global-binding' alias='sendmsg' is-defined='yes'/>
-    <elf-symbol name='__interceptor_setitimer' type='func-type' binding='global-binding' alias='setitimer' is-defined='yes'/>
-    <elf-symbol name='__interceptor_setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_setlocale' type='func-type' binding='global-binding' alias='setlocale' is-defined='yes'/>
-    <elf-symbol name='__interceptor_shmctl' type='func-type' binding='global-binding' alias='shmctl' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigaction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigemptyset' type='func-type' binding='global-binding' alias='sigemptyset' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigfillset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_siglongjmp' type='func-type' binding='global-binding' alias='siglongjmp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_signal' type='func-type' binding='global-binding' alias='signal' is-defined='yes'/>
-    <elf-symbol name='__interceptor_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigprocmask' type='func-type' binding='global-binding' alias='sigprocmask' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigsuspend' type='func-type' binding='global-binding' alias='sigsuspend' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigtimedwait' type='func-type' binding='global-binding' alias='sigtimedwait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigwait' type='func-type' binding='global-binding' alias='sigwait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sigwaitinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sincos' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sincosf' type='func-type' binding='global-binding' alias='sincosf' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sincosl' type='func-type' binding='global-binding' alias='sincosl' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_socket' type='func-type' binding='global-binding' alias='socket' is-defined='yes'/>
-    <elf-symbol name='__interceptor_socketpair' type='func-type' binding='global-binding' alias='socketpair' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_stat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_stat64' type='func-type' binding='global-binding' alias='stat64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_statfs' type='func-type' binding='global-binding' alias='statfs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_statfs64' type='func-type' binding='global-binding' alias='statfs64' is-defined='yes'/>
-    <elf-symbol name='__interceptor_statvfs' type='func-type' binding='global-binding' alias='statvfs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_statvfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strcasecmp' type='func-type' binding='global-binding' alias='strcasecmp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strchr' type='func-type' binding='global-binding' alias='strchr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strchrnul' type='func-type' binding='global-binding' alias='strchrnul' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strcmp' type='func-type' binding='global-binding' alias='strcmp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strcpy' type='func-type' binding='global-binding' alias='strcpy' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strdup' type='func-type' binding='global-binding' alias='strdup' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strerror' type='func-type' binding='global-binding' alias='strerror' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strerror_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strlen' type='func-type' binding='global-binding' alias='strlen' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strncasecmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strncmp' type='func-type' binding='global-binding' alias='strncmp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strncpy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strptime' type='func-type' binding='global-binding' alias='strptime' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strrchr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strstr' type='func-type' binding='global-binding' alias='strstr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strtoimax' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_strtoumax' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_tcgetattr' type='func-type' binding='global-binding' alias='tcgetattr' is-defined='yes'/>
-    <elf-symbol name='__interceptor_tempnam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_textdomain' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_time' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_times' type='func-type' binding='global-binding' alias='times' is-defined='yes'/>
-    <elf-symbol name='__interceptor_tmpnam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_tmpnam_r' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_usleep' type='func-type' binding='global-binding' alias='usleep' is-defined='yes'/>
-    <elf-symbol name='__interceptor_valloc' type='func-type' binding='global-binding' alias='valloc' is-defined='yes'/>
-    <elf-symbol name='__interceptor_vfscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_vscanf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_vsscanf' type='func-type' binding='global-binding' alias='vsscanf' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wait' type='func-type' binding='global-binding' alias='wait' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wait3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_waitpid' type='func-type' binding='global-binding' alias='waitpid' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wcsnrtombs' type='func-type' binding='global-binding' alias='wcsnrtombs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wcsrtombs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wcstombs' type='func-type' binding='global-binding' alias='wcstombs' is-defined='yes'/>
-    <elf-symbol name='__interceptor_wordexp' type='func-type' binding='global-binding' alias='wordexp' is-defined='yes'/>
-    <elf-symbol name='__interceptor_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__interceptor_writev' type='func-type' binding='global-binding' alias='writev' is-defined='yes'/>
-    <elf-symbol name='__isoc99_fscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_fscanf' is-defined='yes'/>
-    <elf-symbol name='__isoc99_scanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_scanf' is-defined='yes'/>
-    <elf-symbol name='__isoc99_sscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_sscanf' is-defined='yes'/>
-    <elf-symbol name='__isoc99_vfscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vfscanf' is-defined='yes'/>
-    <elf-symbol name='__isoc99_vscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vscanf' is-defined='yes'/>
-    <elf-symbol name='__isoc99_vsscanf' type='func-type' binding='weak-binding' alias='__interceptor___isoc99_vsscanf' is-defined='yes'/>
-    <elf-symbol name='__libc_memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__lxstat' type='func-type' binding='weak-binding' alias='__interceptor___lxstat' is-defined='yes'/>
-    <elf-symbol name='__lxstat64' type='func-type' binding='weak-binding' alias='__interceptor___lxstat64' is-defined='yes'/>
-    <elf-symbol name='__res_iclose' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_cov' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_cov_dump' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_report_error_summary' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_sandbox_on_notify' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_set_report_path' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_accept' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_accept4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_access' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_acct' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_add_key' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_adjtimex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_alarm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_bdflush' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_bind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_brk' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_capget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_capset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_chdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_chmod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_chown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_chown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_chroot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_adjtime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_getres' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_close' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_connect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_creat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_delete_module' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_dup3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_pwait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_exit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_exit_group' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_faccessat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchmod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchmodat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fchownat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fdatasync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_flistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_flock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fork' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_fsync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ftruncate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_futimesat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_get_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_get_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getcpu' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getdents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getdents64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getegid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getegid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_gethostname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpgrp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getppid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getpriority' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getrusage' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsockname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_gettid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_getxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_init_module' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_add_watch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_rm_watch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_getevents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_setup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_io_submit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioperm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_get' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_set' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ipc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_kexec_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_keyctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_kill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lchown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lchown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_link' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_linkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_listen' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_listxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_llistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_llseek' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lookup_dcookie' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lseek' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_madvise' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mbind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_migrate_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mincore' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mkdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mkdirat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mknod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mknodat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mmap_pgoff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_move_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mprotect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_getsetattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_notify' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedreceive' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedsend' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mq_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_mremap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgrcv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_msgsnd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_msync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_munlockall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_munmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_name_to_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_newfstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_newfstatat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_newlstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_newstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_newuname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ni_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_nice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_readdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_old_select' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_oldumount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_olduname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_open_by_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_openat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pause' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_iobase' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_perf_event_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_personality' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pipe2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pivot_root' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_poll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pread64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_prlimit64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_readv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_writev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pselect6' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ptrace' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_quotactl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_readlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_readlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_readv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_reboot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_recv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvfrom' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_recvmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_remap_file_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_removexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_renameat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_request_key' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_restart_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigtimedwait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_max' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_min' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getparam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_rr_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setparam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sched_yield' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_select' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_semctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_semget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_semop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_semtimedop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sendto' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_set_tid_address' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setdomainname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sethostname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setitimer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setns' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setpgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setpriority' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setregid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setregid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setsid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_settimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_setxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sgetmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmdt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_shmget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_signal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_socket' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_socketcall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_socketpair' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_splice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_spu_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_spu_run' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ssetmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_stat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_stat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_statfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_statfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_stime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_swapoff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_swapon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_symlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_symlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_syncfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_syslog' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_tee' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_tgkill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_time' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_delete' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_getoverrun' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timer_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_times' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_tkill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_truncate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_umask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_umount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_uname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_unlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_unshare' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_uselib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_ustat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_utime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_utimensat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_utimes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_vfork' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_vhangup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_vmsplice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_waitpid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_post_impl_writev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_accept' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_accept4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_access' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_acct' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_add_key' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_adjtimex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_alarm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_bdflush' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_bind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_brk' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_capget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_capset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chmod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_chroot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_adjtime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_getres' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_close' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_connect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_creat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_delete_module' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_dup3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_ctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_pwait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_wait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_exit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_exit_group' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_faccessat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmodat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fchownat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fdatasync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_flistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_flock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fork' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_fsync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ftruncate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_futimesat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_get_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_get_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getcpu' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getcwd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gethostname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getitimer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpeername' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgrp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getppid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getpriority' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getrusage' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gettid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_gettimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_getxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_init_module' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_add_watch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_rm_watch' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_cancel' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_getevents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_setup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_io_submit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioperm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_get' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_set' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ipc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_kexec_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_keyctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_kill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lgetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_link' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_linkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_listen' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_listxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_llistxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_llseek' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lookup_dcookie' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lremovexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lseek' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lsetxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_madvise' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mbind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_migrate_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mincore' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdirat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mknod' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mknodat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mlockall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mmap_pgoff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_move_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mprotect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_getsetattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_notify' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedreceive' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedsend' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_mremap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgrcv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msgsnd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_msync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munlockall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_munmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_name_to_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_nanosleep' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstatat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newlstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newstat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_newuname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ni_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_nice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_getrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_mmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_readdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_old_select' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_oldumount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_olduname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_open_by_handle_at' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_openat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pause' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_iobase' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_perf_event_open' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_personality' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pivot_root' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_poll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ppoll' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pread64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_preadv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_prlimit64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_readv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_writev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pselect6' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ptrace' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pwrite64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_pwritev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_quotactl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_readv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_reboot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvfrom' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_remap_file_pages' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_removexattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_renameat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_request_key' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_restart_syscall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rmdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigtimedwait' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_max' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_min' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getparam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_rr_get_interval' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setaffinity' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setparam' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setscheduler' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_yield' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_select' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_semtimedop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_send' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmsg' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sendto' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_mempolicy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_robust_list' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_set_tid_address' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setdomainname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sethostname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setitimer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setns' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setpgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setpriority' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setrlimit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setsid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setsockopt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_settimeofday' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_setxattr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sgetmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmdt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shmget' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_shutdown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sigpending' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sigprocmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socket' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socketcall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_socketpair' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_splice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_run' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ssetmask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stat64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_stime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_swapoff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_swapon' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_symlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_symlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sync' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_syncfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysctl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysfs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_sysinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_syslog' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tee' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tgkill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_time' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_delete' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_getoverrun' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_gettime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_settime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_times' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_tkill' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_truncate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_umask' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_umount' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_uname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unlink' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unlinkat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_unshare' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_uselib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_ustat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utime' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utimensat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_utimes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vfork' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vhangup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_vmsplice' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_wait4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_waitid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_waitpid' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_write' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_syscall_pre_impl_writev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_load16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_load32' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_load64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_store16' type='func-type' binding='global-binding' alias='__tsan_unaligned_write2' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_store32' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__sanitizer_unaligned_store64' type='func-type' binding='global-binding' alias='__tsan_unaligned_write8' is-defined='yes'/>
-    <elf-symbol name='__sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic128_store' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic16_store' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic32_store' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic64_store' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_compare_exchange_strong' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_compare_exchange_val' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_compare_exchange_weak' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_exchange' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_and' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_nand' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_or' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_sub' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_fetch_xor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_load' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic8_store' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic_signal_fence' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_atomic_thread_fence' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_default_options' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_func_entry' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_func_exit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_move' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_lock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_lock_rec' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_read_lock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_read_unlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_unlock' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_java_mutex_unlock_rec' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read8' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_read_range' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_release' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_read2' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load16' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_read4' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load32' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_read8' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_load64' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_write2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_write4' type='func-type' binding='global-binding' alias='__sanitizer_unaligned_store32' is-defined='yes'/>
-    <elf-symbol name='__tsan_unaligned_write8' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_vptr_read' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_vptr_update' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write4' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write8' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__tsan_write_range' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__xpg_strerror_r' type='func-type' binding='weak-binding' alias='__interceptor___xpg_strerror_r' is-defined='yes'/>
-    <elf-symbol name='__xstat' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__xstat64' type='func-type' binding='weak-binding' alias='__interceptor___xstat64' is-defined='yes'/>
-    <elf-symbol name='_exit' type='func-type' binding='weak-binding' alias='__interceptor__exit' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='abort' type='func-type' binding='weak-binding' alias='__interceptor_abort' is-defined='yes'/>
-    <elf-symbol name='accept' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='accept4' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='asctime' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='asctime_r' type='func-type' binding='weak-binding' alias='__interceptor_asctime_r' is-defined='yes'/>
-    <elf-symbol name='atexit' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='backtrace' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='backtrace_symbols' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='bind' type='func-type' binding='weak-binding' alias='__interceptor_bind' is-defined='yes'/>
-    <elf-symbol name='calloc' type='func-type' binding='weak-binding' alias='__interceptor_calloc' is-defined='yes'/>
-    <elf-symbol name='canonicalize_file_name' type='func-type' binding='weak-binding' alias='__interceptor_canonicalize_file_name' is-defined='yes'/>
-    <elf-symbol name='cfree' type='func-type' binding='weak-binding' alias='__interceptor_cfree' is-defined='yes'/>
-    <elf-symbol name='clock_getres' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='clock_gettime' type='func-type' binding='weak-binding' alias='__interceptor_clock_gettime' is-defined='yes'/>
-    <elf-symbol name='clock_settime' type='func-type' binding='weak-binding' alias='__interceptor_clock_settime' is-defined='yes'/>
-    <elf-symbol name='close' type='func-type' binding='weak-binding' alias='__interceptor_close' is-defined='yes'/>
-    <elf-symbol name='confstr' type='func-type' binding='weak-binding' alias='__interceptor_confstr' is-defined='yes'/>
-    <elf-symbol name='connect' type='func-type' binding='weak-binding' alias='__interceptor_connect' is-defined='yes'/>
-    <elf-symbol name='creat' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='creat64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='ctime' type='func-type' binding='weak-binding' alias='__interceptor_ctime' is-defined='yes'/>
-    <elf-symbol name='ctime_r' type='func-type' binding='weak-binding' alias='__interceptor_ctime_r' is-defined='yes'/>
-    <elf-symbol name='dlclose' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='dlopen' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='drand48_r' type='func-type' binding='weak-binding' alias='__interceptor_drand48_r' is-defined='yes'/>
-    <elf-symbol name='dup' type='func-type' binding='weak-binding' alias='__interceptor_dup' is-defined='yes'/>
-    <elf-symbol name='dup2' type='func-type' binding='weak-binding' alias='__interceptor_dup2' is-defined='yes'/>
-    <elf-symbol name='dup3' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='epoll_create' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='epoll_create1' type='func-type' binding='weak-binding' alias='__interceptor_epoll_create1' is-defined='yes'/>
-    <elf-symbol name='epoll_ctl' type='func-type' binding='weak-binding' alias='__interceptor_epoll_ctl' is-defined='yes'/>
-    <elf-symbol name='epoll_wait' type='func-type' binding='weak-binding' alias='__interceptor_epoll_wait' is-defined='yes'/>
-    <elf-symbol name='ether_aton' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='ether_aton_r' type='func-type' binding='weak-binding' alias='__interceptor_ether_aton_r' is-defined='yes'/>
-    <elf-symbol name='ether_hostton' type='func-type' binding='weak-binding' alias='__interceptor_ether_hostton' is-defined='yes'/>
-    <elf-symbol name='ether_line' type='func-type' binding='weak-binding' alias='__interceptor_ether_line' is-defined='yes'/>
-    <elf-symbol name='ether_ntoa' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='ether_ntoa_r' type='func-type' binding='weak-binding' alias='__interceptor_ether_ntoa_r' is-defined='yes'/>
-    <elf-symbol name='ether_ntohost' type='func-type' binding='weak-binding' alias='__interceptor_ether_ntohost' is-defined='yes'/>
-    <elf-symbol name='eventfd' type='func-type' binding='weak-binding' alias='__interceptor_eventfd' is-defined='yes'/>
-    <elf-symbol name='fclose' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fflush' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fopen' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fork' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fread' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='free' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='freopen' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='frexp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='frexpf' type='func-type' binding='weak-binding' alias='__interceptor_frexpf' is-defined='yes'/>
-    <elf-symbol name='frexpl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fscanf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fstat' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fstat64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fstatfs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fstatfs64' type='func-type' binding='weak-binding' alias='__interceptor_fstatfs64' is-defined='yes'/>
-    <elf-symbol name='fstatvfs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='fstatvfs64' type='func-type' binding='weak-binding' alias='__interceptor_fstatvfs64' is-defined='yes'/>
-    <elf-symbol name='fwrite' type='func-type' binding='weak-binding' alias='__interceptor_fwrite' is-defined='yes'/>
-    <elf-symbol name='get_current_dir_name' type='func-type' binding='weak-binding' alias='__interceptor_get_current_dir_name' is-defined='yes'/>
-    <elf-symbol name='getaddrinfo' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='getcwd' type='func-type' binding='weak-binding' alias='__interceptor_getcwd' is-defined='yes'/>
-    <elf-symbol name='getdelim' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='getgroups' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gethostbyaddr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gethostbyaddr_r' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyaddr_r' is-defined='yes'/>
-    <elf-symbol name='gethostbyname' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyname' is-defined='yes'/>
-    <elf-symbol name='gethostbyname2' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gethostbyname2_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gethostbyname_r' type='func-type' binding='weak-binding' alias='__interceptor_gethostbyname_r' is-defined='yes'/>
-    <elf-symbol name='gethostent' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gethostent_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='getitimer' type='func-type' binding='weak-binding' alias='__interceptor_getitimer' is-defined='yes'/>
-    <elf-symbol name='getline' type='func-type' binding='weak-binding' alias='__interceptor_getline' is-defined='yes'/>
-    <elf-symbol name='getmntent' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='getmntent_r' type='func-type' binding='weak-binding' alias='__interceptor_getmntent_r' is-defined='yes'/>
-    <elf-symbol name='getpeername' type='func-type' binding='weak-binding' alias='__interceptor_getpeername' is-defined='yes'/>
-    <elf-symbol name='getsockname' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='getsockopt' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='gettimeofday' type='func-type' binding='weak-binding' alias='__interceptor_gettimeofday' is-defined='yes'/>
-    <elf-symbol name='gmtime' type='func-type' binding='weak-binding' alias='__interceptor_gmtime' is-defined='yes'/>
-    <elf-symbol name='gmtime_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='iconv' type='func-type' binding='weak-binding' alias='__interceptor_iconv' is-defined='yes'/>
-    <elf-symbol name='inet_aton' type='func-type' binding='weak-binding' alias='__interceptor_inet_aton' is-defined='yes'/>
-    <elf-symbol name='inet_ntop' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='inet_pton' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='initgroups' type='func-type' binding='weak-binding' alias='__interceptor_initgroups' is-defined='yes'/>
-    <elf-symbol name='inotify_init' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='inotify_init1' type='func-type' binding='weak-binding' alias='__interceptor_inotify_init1' is-defined='yes'/>
-    <elf-symbol name='ioctl' type='func-type' binding='weak-binding' alias='__interceptor_ioctl' is-defined='yes'/>
-    <elf-symbol name='kill' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='lgamma' type='func-type' binding='weak-binding' alias='__interceptor_lgamma' is-defined='yes'/>
-    <elf-symbol name='lgamma_r' type='func-type' binding='weak-binding' alias='__interceptor_lgamma_r' is-defined='yes'/>
-    <elf-symbol name='lgammaf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='lgammaf_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='lgammal' type='func-type' binding='weak-binding' alias='__interceptor_lgammal' is-defined='yes'/>
-    <elf-symbol name='lgammal_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='listen' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='localtime' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='localtime_r' type='func-type' binding='weak-binding' alias='__interceptor_localtime_r' is-defined='yes'/>
-    <elf-symbol name='longjmp' type='func-type' binding='weak-binding' alias='__interceptor_longjmp' is-defined='yes'/>
-    <elf-symbol name='lrand48_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='lstat' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='lstat64' type='func-type' binding='weak-binding' alias='__interceptor_lstat64' is-defined='yes'/>
-    <elf-symbol name='malloc' type='func-type' binding='weak-binding' alias='__interceptor_malloc' is-defined='yes'/>
-    <elf-symbol name='malloc_usable_size' type='func-type' binding='weak-binding' alias='__interceptor_malloc_usable_size' is-defined='yes'/>
-    <elf-symbol name='mbsnrtowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbsnrtowcs' is-defined='yes'/>
-    <elf-symbol name='mbsrtowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbsrtowcs' is-defined='yes'/>
-    <elf-symbol name='mbstowcs' type='func-type' binding='weak-binding' alias='__interceptor_mbstowcs' is-defined='yes'/>
-    <elf-symbol name='memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='memchr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='memcmp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='memcpy' type='func-type' binding='weak-binding' alias='__interceptor_memcpy' is-defined='yes'/>
-    <elf-symbol name='memmove' type='func-type' binding='weak-binding' alias='__interceptor_memmove' is-defined='yes'/>
-    <elf-symbol name='memrchr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='memset' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='mlock' type='func-type' binding='weak-binding' alias='__interceptor_mlock' is-defined='yes'/>
-    <elf-symbol name='mlockall' type='func-type' binding='weak-binding' alias='__interceptor_mlockall' is-defined='yes'/>
-    <elf-symbol name='mmap' type='func-type' binding='weak-binding' alias='__interceptor_mmap' is-defined='yes'/>
-    <elf-symbol name='mmap64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='modf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='modff' type='func-type' binding='weak-binding' alias='__interceptor_modff' is-defined='yes'/>
-    <elf-symbol name='modfl' type='func-type' binding='weak-binding' alias='__interceptor_modfl' is-defined='yes'/>
-    <elf-symbol name='munlock' type='func-type' binding='weak-binding' alias='__interceptor_munlock' is-defined='yes'/>
-    <elf-symbol name='munlockall' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='munmap' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='nanosleep' type='func-type' binding='weak-binding' alias='__interceptor_nanosleep' is-defined='yes'/>
-    <elf-symbol name='on_exit' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='open' type='func-type' binding='weak-binding' alias='__interceptor_open' is-defined='yes'/>
-    <elf-symbol name='open64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='opendir' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pipe' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pipe2' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='poll' type='func-type' binding='weak-binding' alias='__interceptor_poll' is-defined='yes'/>
-    <elf-symbol name='posix_memalign' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='ppoll' type='func-type' binding='weak-binding' alias='__interceptor_ppoll' is-defined='yes'/>
-    <elf-symbol name='prctl' type='func-type' binding='weak-binding' alias='__interceptor_prctl' is-defined='yes'/>
-    <elf-symbol name='pread' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pread64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='preadv' type='func-type' binding='weak-binding' alias='__interceptor_preadv' is-defined='yes'/>
-    <elf-symbol name='preadv64' type='func-type' binding='weak-binding' alias='__interceptor_preadv64' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getaffinity_np' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getaffinity_np' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getdetachstate' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getdetachstate' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getguardsize' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getguardsize' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getinheritsched' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getschedparam' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getschedpolicy' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getschedpolicy' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getscope' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getscope' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getstack' type='func-type' binding='weak-binding' alias='__interceptor_pthread_attr_getstack' is-defined='yes'/>
-    <elf-symbol name='pthread_attr_getstacksize' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_barrier_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_barrier_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_barrier_init' is-defined='yes'/>
-    <elf-symbol name='pthread_barrier_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_broadcast' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_init' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_signal' type='func-type' binding='weak-binding' alias='__interceptor_pthread_cond_signal' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_timedwait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_cond_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_create' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_detach' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_getschedparam' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_join' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_kill' type='func-type' binding='weak-binding' alias='__interceptor_pthread_kill' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_init' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_lock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_lock' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_timedlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_trylock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_mutex_trylock' is-defined='yes'/>
-    <elf-symbol name='pthread_mutex_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_once' type='func-type' binding='weak-binding' alias='__interceptor_pthread_once' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_init' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_rdlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_timedrdlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_timedrdlock' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_timedwrlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_tryrdlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_tryrdlock' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_trywrlock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_rwlock_trywrlock' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_rwlock_wrlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_setname_np' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_spin_destroy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_spin_init' type='func-type' binding='weak-binding' alias='__interceptor_pthread_spin_init' is-defined='yes'/>
-    <elf-symbol name='pthread_spin_lock' type='func-type' binding='weak-binding' alias='__interceptor_pthread_spin_lock' is-defined='yes'/>
-    <elf-symbol name='pthread_spin_trylock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pthread_spin_unlock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='ptrace' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='puts' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pvalloc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='pwrite' type='func-type' binding='weak-binding' alias='__interceptor_pwrite' is-defined='yes'/>
-    <elf-symbol name='pwrite64' type='func-type' binding='weak-binding' alias='__interceptor_pwrite64' is-defined='yes'/>
-    <elf-symbol name='pwritev' type='func-type' binding='weak-binding' alias='__interceptor_pwritev' is-defined='yes'/>
-    <elf-symbol name='pwritev64' type='func-type' binding='weak-binding' alias='__interceptor_pwritev64' is-defined='yes'/>
-    <elf-symbol name='raise' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='random_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='read' type='func-type' binding='weak-binding' alias='__interceptor_read' is-defined='yes'/>
-    <elf-symbol name='readdir' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='readdir64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='readdir64_r' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='readdir_r' type='func-type' binding='weak-binding' alias='__interceptor_readdir_r' is-defined='yes'/>
-    <elf-symbol name='readv' type='func-type' binding='weak-binding' alias='__interceptor_readv' is-defined='yes'/>
-    <elf-symbol name='realloc' type='func-type' binding='weak-binding' alias='__interceptor_realloc' is-defined='yes'/>
-    <elf-symbol name='realpath' type='func-type' binding='weak-binding' alias='__interceptor_realpath' is-defined='yes'/>
-    <elf-symbol name='recv' type='func-type' binding='weak-binding' alias='__interceptor_recv' is-defined='yes'/>
-    <elf-symbol name='recvmsg' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='remquo' type='func-type' binding='weak-binding' alias='__interceptor_remquo' is-defined='yes'/>
-    <elf-symbol name='remquof' type='func-type' binding='weak-binding' alias='__interceptor_remquof' is-defined='yes'/>
-    <elf-symbol name='remquol' type='func-type' binding='weak-binding' alias='__interceptor_remquol' is-defined='yes'/>
-    <elf-symbol name='rmdir' type='func-type' binding='weak-binding' alias='__interceptor_rmdir' is-defined='yes'/>
-    <elf-symbol name='scandir' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='scandir64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='scanf' type='func-type' binding='weak-binding' alias='__interceptor_scanf' is-defined='yes'/>
-    <elf-symbol name='sched_getaffinity' type='func-type' binding='weak-binding' alias='__interceptor_sched_getaffinity' is-defined='yes'/>
-    <elf-symbol name='sem_destroy' type='func-type' binding='weak-binding' alias='__interceptor_sem_destroy' is-defined='yes'/>
-    <elf-symbol name='sem_getvalue' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sem_init' type='func-type' binding='weak-binding' alias='__interceptor_sem_init' is-defined='yes'/>
-    <elf-symbol name='sem_post' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sem_timedwait' type='func-type' binding='weak-binding' alias='__interceptor_sem_timedwait' is-defined='yes'/>
-    <elf-symbol name='sem_trywait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sem_wait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='send' type='func-type' binding='weak-binding' alias='__interceptor_send' is-defined='yes'/>
-    <elf-symbol name='sendmsg' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='setitimer' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='setjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='setlocale' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='shmctl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigaction' type='func-type' binding='weak-binding' alias='__interceptor_sigaction' is-defined='yes'/>
-    <elf-symbol name='sigemptyset' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigfillset' type='func-type' binding='weak-binding' alias='__interceptor_sigfillset' is-defined='yes'/>
-    <elf-symbol name='siglongjmp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='signal' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='signalfd' type='func-type' binding='weak-binding' alias='__interceptor_signalfd' is-defined='yes'/>
-    <elf-symbol name='sigpending' type='func-type' binding='weak-binding' alias='__interceptor_sigpending' is-defined='yes'/>
-    <elf-symbol name='sigprocmask' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigsetjmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='sigsuspend' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigtimedwait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigwait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sigwaitinfo' type='func-type' binding='weak-binding' alias='__interceptor_sigwaitinfo' is-defined='yes'/>
-    <elf-symbol name='sincos' type='func-type' binding='weak-binding' alias='__interceptor_sincos' is-defined='yes'/>
-    <elf-symbol name='sincosf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sincosl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sleep' type='func-type' binding='weak-binding' alias='__interceptor_sleep' is-defined='yes'/>
-    <elf-symbol name='socket' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='socketpair' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='sscanf' type='func-type' binding='weak-binding' alias='__interceptor_sscanf' is-defined='yes'/>
-    <elf-symbol name='stat' type='func-type' binding='weak-binding' alias='__interceptor_stat' is-defined='yes'/>
-    <elf-symbol name='stat64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='statfs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='statfs64' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='statvfs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='statvfs64' type='func-type' binding='weak-binding' alias='__interceptor_statvfs64' is-defined='yes'/>
-    <elf-symbol name='strcasecmp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strchr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strchrnul' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strcmp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strcpy' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strdup' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strerror' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strerror_r' type='func-type' binding='weak-binding' alias='__interceptor_strerror_r' is-defined='yes'/>
-    <elf-symbol name='strlen' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strncasecmp' type='func-type' binding='weak-binding' alias='__interceptor_strncasecmp' is-defined='yes'/>
-    <elf-symbol name='strncmp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strncpy' type='func-type' binding='weak-binding' alias='__interceptor_strncpy' is-defined='yes'/>
-    <elf-symbol name='strptime' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strrchr' type='func-type' binding='weak-binding' alias='__interceptor_strrchr' is-defined='yes'/>
-    <elf-symbol name='strstr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='strtoimax' type='func-type' binding='weak-binding' alias='__interceptor_strtoimax' is-defined='yes'/>
-    <elf-symbol name='strtoumax' type='func-type' binding='weak-binding' alias='__interceptor_strtoumax' is-defined='yes'/>
-    <elf-symbol name='sysinfo' type='func-type' binding='weak-binding' alias='__interceptor_sysinfo' is-defined='yes'/>
-    <elf-symbol name='tcgetattr' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='tempnam' type='func-type' binding='weak-binding' alias='__interceptor_tempnam' is-defined='yes'/>
-    <elf-symbol name='textdomain' type='func-type' binding='weak-binding' alias='__interceptor_textdomain' is-defined='yes'/>
-    <elf-symbol name='time' type='func-type' binding='weak-binding' alias='__interceptor_time' is-defined='yes'/>
-    <elf-symbol name='times' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='tmpnam' type='func-type' binding='weak-binding' alias='__interceptor_tmpnam' is-defined='yes'/>
-    <elf-symbol name='tmpnam_r' type='func-type' binding='weak-binding' alias='__interceptor_tmpnam_r' is-defined='yes'/>
-    <elf-symbol name='unlink' type='func-type' binding='weak-binding' alias='__interceptor_unlink' is-defined='yes'/>
-    <elf-symbol name='usleep' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='valloc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='vfscanf' type='func-type' binding='weak-binding' alias='__interceptor_vfscanf' is-defined='yes'/>
-    <elf-symbol name='vscanf' type='func-type' binding='weak-binding' alias='__interceptor_vscanf' is-defined='yes'/>
-    <elf-symbol name='vsscanf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='wait' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='wait3' type='func-type' binding='weak-binding' alias='__interceptor_wait3' is-defined='yes'/>
-    <elf-symbol name='wait4' type='func-type' binding='weak-binding' alias='__interceptor_wait4' is-defined='yes'/>
-    <elf-symbol name='waitid' type='func-type' binding='weak-binding' alias='__interceptor_waitid' is-defined='yes'/>
-    <elf-symbol name='waitpid' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='wcsnrtombs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='wcsrtombs' type='func-type' binding='weak-binding' alias='__interceptor_wcsrtombs' is-defined='yes'/>
-    <elf-symbol name='wcstombs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='wordexp' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='write' type='func-type' binding='weak-binding' alias='__interceptor_write' is-defined='yes'/>
-    <elf-symbol name='writev' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='AnnotateBenignRace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateBenignRaceSized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarSignal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarSignalAll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateCondVarWait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateEnableRaceDetection' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateExpectRace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateFlushExpectedRaces' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateFlushState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateHappensAfter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateHappensBefore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreReadsBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreReadsEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreSyncBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreSyncEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreWritesBegin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateIgnoreWritesEnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateMemoryIsInitialized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateMutexIsNotPHB' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateMutexIsUsedAsCondVar' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateNoOp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQCreate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQDestroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQGet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotatePCQPut' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotatePublishMemoryRange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockAcquired' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockCreate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockCreateStatic' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockDestroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateRWLockReleased' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateThreadName' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateTraceMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='AnnotateUnpublishMemoryRange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ThreadSanitizerQuery' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateBenignRaceSized' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateHappensAfter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='WTFAnnotateHappensBefore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__sanitizer11CheckFailedEPKciS1_yy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__sanitizer7OnPrintEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6__tsan10OnFinalizeEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6__tsan8OnReportEPKNS_10ReportDescEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_create_state' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_dwarf_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_get_view' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_initialize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_pcinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_qsort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_release_view' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_syminfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_finish' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_grow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_backtrace_vector_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_fill_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_init_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_mangled_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_print_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memcmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memcpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_memset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strcmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strlen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strncmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_internal_strnlen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_java_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_java_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__close' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_atexit' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___cxa_atexit' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_abort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__fxstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__fxstat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___close' type='func-type' binding='global-binding' visibility='default-visibility' alias='__close' is-defined='yes'/>
+    <elf-symbol name='__interceptor___cxa_atexit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___fxstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='__fxstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor___fxstat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='__fxstat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_fscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_scanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_sscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vfscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___isoc99_vsscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___libc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='__libc_memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor___lxstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___lxstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___res_iclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='__res_iclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor___sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xpg_strerror_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='__xstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor___xstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor__exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor__setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_abort' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_accept' type='func-type' binding='global-binding' visibility='default-visibility' alias='accept' is-defined='yes'/>
+    <elf-symbol name='__interceptor_accept4' type='func-type' binding='global-binding' visibility='default-visibility' alias='accept4' is-defined='yes'/>
+    <elf-symbol name='__interceptor_asctime' type='func-type' binding='global-binding' visibility='default-visibility' alias='asctime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_asctime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_atexit' type='func-type' binding='global-binding' visibility='default-visibility' alias='atexit' is-defined='yes'/>
+    <elf-symbol name='__interceptor_backtrace' type='func-type' binding='global-binding' visibility='default-visibility' alias='backtrace' is-defined='yes'/>
+    <elf-symbol name='__interceptor_backtrace_symbols' type='func-type' binding='global-binding' visibility='default-visibility' alias='backtrace_symbols' is-defined='yes'/>
+    <elf-symbol name='__interceptor_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_canonicalize_file_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' alias='clock_getres' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_confstr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_creat' type='func-type' binding='global-binding' visibility='default-visibility' alias='creat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_creat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='creat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ctime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ctime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dlclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='dlclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dlopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='dlopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_drand48_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_dup3' type='func-type' binding='global-binding' visibility='default-visibility' alias='dup3' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' alias='epoll_create' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_aton' type='func-type' binding='global-binding' visibility='default-visibility' alias='ether_aton' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_aton_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_hostton' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntoa' type='func-type' binding='global-binding' visibility='default-visibility' alias='ether_ntoa' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntoa_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ether_ntohost' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fclose' type='func-type' binding='global-binding' visibility='default-visibility' alias='fclose' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fflush' type='func-type' binding='global-binding' visibility='default-visibility' alias='fflush' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='fopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fork' type='func-type' binding='global-binding' visibility='default-visibility' alias='fork' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fread' type='func-type' binding='global-binding' visibility='default-visibility' alias='fread' is-defined='yes'/>
+    <elf-symbol name='__interceptor_free' type='func-type' binding='global-binding' visibility='default-visibility' alias='free' is-defined='yes'/>
+    <elf-symbol name='__interceptor_freopen' type='func-type' binding='global-binding' visibility='default-visibility' alias='freopen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexp' type='func-type' binding='global-binding' visibility='default-visibility' alias='frexp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexpf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_frexpl' type='func-type' binding='global-binding' visibility='default-visibility' alias='frexpl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fscanf' type='func-type' binding='global-binding' visibility='default-visibility' alias='fscanf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstatfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatvfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='fstatvfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fstatvfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_fwrite' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_get_current_dir_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getaddrinfo' type='func-type' binding='global-binding' visibility='default-visibility' alias='getaddrinfo' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getdelim' type='func-type' binding='global-binding' visibility='default-visibility' alias='getdelim' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' alias='getgroups' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyaddr' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyaddr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyaddr_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname2' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyname2' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname2_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostbyname2_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostbyname_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostent' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostent' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gethostent_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gethostent_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getline' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getmntent' type='func-type' binding='global-binding' visibility='default-visibility' alias='getmntent' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getmntent_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' alias='getsockname' is-defined='yes'/>
+    <elf-symbol name='__interceptor_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' alias='getsockopt' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gmtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_gmtime_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='gmtime_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_iconv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_aton' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_ntop' type='func-type' binding='global-binding' visibility='default-visibility' alias='inet_ntop' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inet_pton' type='func-type' binding='global-binding' visibility='default-visibility' alias='inet_pton' is-defined='yes'/>
+    <elf-symbol name='__interceptor_initgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='inotify_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_kill' type='func-type' binding='global-binding' visibility='default-visibility' alias='kill' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgamma' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgamma_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammaf' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammaf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammaf_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammaf_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lgammal_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lgammal_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_listen' type='func-type' binding='global-binding' visibility='default-visibility' alias='listen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_localtime' type='func-type' binding='global-binding' visibility='default-visibility' alias='localtime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_localtime_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_longjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lrand48_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='lrand48_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lstat' type='func-type' binding='global-binding' visibility='default-visibility' alias='lstat' is-defined='yes'/>
+    <elf-symbol name='__interceptor_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_malloc_usable_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbsnrtowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbsrtowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mbstowcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='memchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memcmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='memcmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memcpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memmove' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memrchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='memrchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_memset' type='func-type' binding='global-binding' visibility='default-visibility' alias='memset' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_mmap64' type='func-type' binding='global-binding' visibility='default-visibility' alias='mmap64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modf' type='func-type' binding='global-binding' visibility='default-visibility' alias='modf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_modfl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' alias='munlockall' is-defined='yes'/>
+    <elf-symbol name='__interceptor_munmap' type='func-type' binding='global-binding' visibility='default-visibility' alias='munmap' is-defined='yes'/>
+    <elf-symbol name='__interceptor_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_on_exit' type='func-type' binding='global-binding' visibility='default-visibility' alias='on_exit' is-defined='yes'/>
+    <elf-symbol name='__interceptor_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_open64' type='func-type' binding='global-binding' visibility='default-visibility' alias='open64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_opendir' type='func-type' binding='global-binding' visibility='default-visibility' alias='opendir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pipe' type='func-type' binding='global-binding' visibility='default-visibility' alias='pipe' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' alias='pipe2' is-defined='yes'/>
+    <elf-symbol name='__interceptor_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='posix_memalign' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_prctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pread' type='func-type' binding='global-binding' visibility='default-visibility' alias='pread' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pread64' type='func-type' binding='global-binding' visibility='default-visibility' alias='pread64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_preadv64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getaffinity_np' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getdetachstate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getguardsize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getinheritsched' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getinheritsched' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getschedparam' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getschedparam' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getschedpolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getscope' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getstack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_attr_getstacksize' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_attr_getstacksize' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_barrier_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_barrier_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_barrier_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_broadcast' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_broadcast' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_timedwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_timedwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_cond_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_cond_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_create' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_create' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_detach' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_detach' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_getschedparam' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_getschedparam' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_join' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_join' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_timedlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_timedlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_trylock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_mutex_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_mutex_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_once' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_init' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_init' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_rdlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_rdlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_timedrdlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_timedwrlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_timedwrlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_tryrdlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_trywrlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_rwlock_wrlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_rwlock_wrlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_setname_np' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_setname_np' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_destroy' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_destroy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_trylock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_trylock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pthread_spin_unlock' type='func-type' binding='global-binding' visibility='default-visibility' alias='pthread_spin_unlock' is-defined='yes'/>
+    <elf-symbol name='__interceptor_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' alias='ptrace' is-defined='yes'/>
+    <elf-symbol name='__interceptor_puts' type='func-type' binding='global-binding' visibility='default-visibility' alias='puts' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='pvalloc' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwrite' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_pwritev64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_raise' type='func-type' binding='global-binding' visibility='default-visibility' alias='raise' is-defined='yes'/>
+    <elf-symbol name='__interceptor_random_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='random_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir64' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir64_r' type='func-type' binding='global-binding' visibility='default-visibility' alias='readdir64_r' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readdir_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_realpath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' alias='recvmsg' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquof' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_remquol' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scandir' type='func-type' binding='global-binding' visibility='default-visibility' alias='scandir' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scandir64' type='func-type' binding='global-binding' visibility='default-visibility' alias='scandir64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_scanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_getvalue' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_getvalue' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_post' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_post' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_timedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_trywait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_trywait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sem_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sem_wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' alias='sendmsg' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' alias='setitimer' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_setlocale' type='func-type' binding='global-binding' visibility='default-visibility' alias='setlocale' is-defined='yes'/>
+    <elf-symbol name='__interceptor_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' alias='shmctl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigaction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigemptyset' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigemptyset' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigfillset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_siglongjmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='siglongjmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_signal' type='func-type' binding='global-binding' visibility='default-visibility' alias='signal' is-defined='yes'/>
+    <elf-symbol name='__interceptor_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigprocmask' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigsuspend' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigsuspend' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigtimedwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigwait' type='func-type' binding='global-binding' visibility='default-visibility' alias='sigwait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sigwaitinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincos' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincosf' type='func-type' binding='global-binding' visibility='default-visibility' alias='sincosf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sincosl' type='func-type' binding='global-binding' visibility='default-visibility' alias='sincosl' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_socket' type='func-type' binding='global-binding' visibility='default-visibility' alias='socket' is-defined='yes'/>
+    <elf-symbol name='__interceptor_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' alias='socketpair' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_stat64' type='func-type' binding='global-binding' visibility='default-visibility' alias='stat64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='statfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' alias='statfs64' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statvfs' type='func-type' binding='global-binding' visibility='default-visibility' alias='statvfs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_statvfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcasecmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcasecmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strchr' type='func-type' binding='global-binding' visibility='default-visibility' alias='strchr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strchrnul' type='func-type' binding='global-binding' visibility='default-visibility' alias='strchrnul' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strcpy' type='func-type' binding='global-binding' visibility='default-visibility' alias='strcpy' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strdup' type='func-type' binding='global-binding' visibility='default-visibility' alias='strdup' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strerror' type='func-type' binding='global-binding' visibility='default-visibility' alias='strerror' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strerror_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strlen' type='func-type' binding='global-binding' visibility='default-visibility' alias='strlen' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncasecmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncmp' type='func-type' binding='global-binding' visibility='default-visibility' alias='strncmp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strncpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strptime' type='func-type' binding='global-binding' visibility='default-visibility' alias='strptime' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strrchr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strstr' type='func-type' binding='global-binding' visibility='default-visibility' alias='strstr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strtoimax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_strtoumax' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tcgetattr' type='func-type' binding='global-binding' visibility='default-visibility' alias='tcgetattr' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tempnam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_textdomain' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_times' type='func-type' binding='global-binding' visibility='default-visibility' alias='times' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tmpnam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_tmpnam_r' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_usleep' type='func-type' binding='global-binding' visibility='default-visibility' alias='usleep' is-defined='yes'/>
+    <elf-symbol name='__interceptor_valloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='valloc' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vfscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vscanf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_vsscanf' type='func-type' binding='global-binding' visibility='default-visibility' alias='vsscanf' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait' type='func-type' binding='global-binding' visibility='default-visibility' alias='wait' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' alias='waitpid' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcsnrtombs' type='func-type' binding='global-binding' visibility='default-visibility' alias='wcsnrtombs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcsrtombs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wcstombs' type='func-type' binding='global-binding' visibility='default-visibility' alias='wcstombs' is-defined='yes'/>
+    <elf-symbol name='__interceptor_wordexp' type='func-type' binding='global-binding' visibility='default-visibility' alias='wordexp' is-defined='yes'/>
+    <elf-symbol name='__interceptor_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__interceptor_writev' type='func-type' binding='global-binding' visibility='default-visibility' alias='writev' is-defined='yes'/>
+    <elf-symbol name='__isoc99_fscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_fscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_scanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_scanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_sscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_sscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vfscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vfscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vscanf' is-defined='yes'/>
+    <elf-symbol name='__isoc99_vsscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___isoc99_vsscanf' is-defined='yes'/>
+    <elf-symbol name='__libc_memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__lxstat' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___lxstat' is-defined='yes'/>
+    <elf-symbol name='__lxstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___lxstat64' is-defined='yes'/>
+    <elf-symbol name='__res_iclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_cov' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_cov_dump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_report_error_summary' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_sandbox_on_notify' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_set_report_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_accept' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_accept4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_access' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_acct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_add_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_adjtimex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_alarm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_bdflush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_brk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_capget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_capset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_chroot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_adjtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_creat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_delete_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_dup3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_pwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_eventfd2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_exit_group' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_faccessat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchmodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fchownat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fcntl64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fdatasync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_flistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_flock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_fsync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ftruncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_futimesat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_get_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_get_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getcpu' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getdents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getdents64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getegid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getegid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_geteuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpgrp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getppid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getrusage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gettid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_getxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_init_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_add_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_inotify_rm_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_getevents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_setup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_io_submit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioperm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ioprio_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ipc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_kexec_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_keyctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_link' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_linkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_listxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_llistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_llseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lookup_dcookie' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_madvise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mbind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_migrate_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mincore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mkdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mkdirat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mknod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mknodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mmap_pgoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_move_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mprotect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_getsetattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedreceive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_timedsend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mq_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgrcv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msgsnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_msync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_name_to_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newfstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newfstatat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newlstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_newuname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ni_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_nice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_readdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_old_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_oldumount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_olduname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_open_by_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_openat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_iobase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pciconfig_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_perf_event_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_personality' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pivot_root' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pread64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_prlimit64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_process_vm_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pselect6' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_quotactl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_reboot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvfrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_remap_file_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_removexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_renameat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_request_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_restart_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_get_priority_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_getscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_rr_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_setscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sched_yield' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_semtimedop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendfile64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sendto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_set_tid_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setdomainname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setfsuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setns' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setregid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setregid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setreuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_settimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_setxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sgetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmdt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shmget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_signalfd4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socketcall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_splice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_spu_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_spu_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ssetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_statfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_stime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_swapoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_swapon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_symlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_symlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_syncfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_syslog' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tee' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tgkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_getoverrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timer_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_timerfd_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_tkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_truncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_umask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_umount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_uname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_uselib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_ustat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utimensat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_utimes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vfork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vhangup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_vmsplice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_post_impl_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_accept' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_accept4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_access' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_acct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_add_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_adjtimex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_alarm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_bdflush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_bind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_brk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_capget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_capset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_chroot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_adjtime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_getres' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_clock_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_connect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_creat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_delete_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_dup3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_create1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_ctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_pwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_epoll_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_eventfd2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_exit_group' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_faccessat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchmodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fchownat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fcntl64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fdatasync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_flistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_flock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fstatfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_fsync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ftruncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_futimesat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_get_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_get_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getcpu' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getcwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getdents64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getegid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_geteuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpeername' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpgrp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getppid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getrusage' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gettid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_gettimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_getxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_init_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_add_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_init1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_inotify_rm_watch' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_cancel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_getevents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_setup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_io_submit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioperm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_get' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ioprio_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ipc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_kexec_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_keyctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_kill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lchown16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lgetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_link' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_linkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_listen' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_listxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_llistxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_llseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lookup_dcookie' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lremovexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lseek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lsetxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_lstat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_madvise' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mbind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_migrate_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mincore' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mkdirat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mknod' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mknodat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mmap_pgoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_move_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mprotect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_getsetattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_notify' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedreceive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_timedsend' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mq_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgrcv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msgsnd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_msync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munlockall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_name_to_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_nanosleep' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newfstatat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newlstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newstat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_newuname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ni_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_nice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_getrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_readdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_old_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_oldumount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_olduname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_open_by_handle_at' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_openat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pause' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_iobase' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pciconfig_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_perf_event_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_personality' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pipe2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pivot_root' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_poll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ppoll' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pread64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_preadv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_prlimit64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_process_vm_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pselect6' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ptrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pwrite64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_pwritev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_quotactl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_readv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_reboot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvfrom' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_recvmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_remap_file_pages' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_removexattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_renameat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_request_key' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_restart_syscall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rmdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_sigtimedwait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_rt_tgsigqueueinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_get_priority_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_getscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_rr_get_interval' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setaffinity' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setparam' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_setscheduler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sched_yield' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_select' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_semtimedop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_send' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendfile64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendmsg' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sendto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_mempolicy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_robust_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_set_tid_address' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setdomainname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setfsuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setgroups16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sethostname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setitimer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setns' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setpgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setpriority' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setregid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresgid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setresuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setreuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setrlimit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setsid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setsockopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_settimeofday' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setuid16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_setxattr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sgetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmdt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shmget' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_shutdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_signalfd4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sigpending' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sigprocmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socketcall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_socketpair' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_splice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_spu_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ssetmask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stat64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_statfs64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_stime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_swapoff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_swapon' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_symlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_symlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sync' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_syncfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_sysinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_syslog' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tee' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tgkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_time' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_getoverrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timer_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_gettime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_timerfd_settime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_tkill' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_truncate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_umask' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_umount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_uname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unlink' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unlinkat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_uselib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_ustat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utime' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utimensat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_utimes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vfork' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vhangup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_vmsplice' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_wait4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_waitid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_waitpid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_write' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_syscall_pre_impl_writev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_load64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store16' type='func-type' binding='global-binding' visibility='default-visibility' alias='__tsan_unaligned_write2' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__sanitizer_unaligned_store64' type='func-type' binding='global-binding' visibility='default-visibility' alias='__tsan_unaligned_write8' is-defined='yes'/>
+    <elf-symbol name='__sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic128_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic16_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic32_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic64_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_strong' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_val' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_compare_exchange_weak' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_exchange' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_and' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_nand' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_or' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_sub' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_fetch_xor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_load' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic8_store' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic_signal_fence' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_atomic_thread_fence' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_default_options' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_func_entry' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_func_exit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_move' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_lock_rec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_read_lock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_read_unlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_unlock' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_java_mutex_unlock_rec' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_read_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read2' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load16' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read4' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load32' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_read8' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_load64' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write4' type='func-type' binding='global-binding' visibility='default-visibility' alias='__sanitizer_unaligned_store32' is-defined='yes'/>
+    <elf-symbol name='__tsan_unaligned_write8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_vptr_read' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_vptr_update' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__tsan_write_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__xpg_strerror_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___xpg_strerror_r' is-defined='yes'/>
+    <elf-symbol name='__xstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__xstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor___xstat64' is-defined='yes'/>
+    <elf-symbol name='_exit' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor__exit' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='abort' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_abort' is-defined='yes'/>
+    <elf-symbol name='accept' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='accept4' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='asctime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='asctime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_asctime_r' is-defined='yes'/>
+    <elf-symbol name='atexit' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='backtrace' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='backtrace_symbols' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='bind' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_bind' is-defined='yes'/>
+    <elf-symbol name='calloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_calloc' is-defined='yes'/>
+    <elf-symbol name='canonicalize_file_name' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_canonicalize_file_name' is-defined='yes'/>
+    <elf-symbol name='cfree' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_cfree' is-defined='yes'/>
+    <elf-symbol name='clock_getres' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='clock_gettime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_clock_gettime' is-defined='yes'/>
+    <elf-symbol name='clock_settime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_clock_settime' is-defined='yes'/>
+    <elf-symbol name='close' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_close' is-defined='yes'/>
+    <elf-symbol name='confstr' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_confstr' is-defined='yes'/>
+    <elf-symbol name='connect' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_connect' is-defined='yes'/>
+    <elf-symbol name='creat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='creat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ctime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ctime' is-defined='yes'/>
+    <elf-symbol name='ctime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ctime_r' is-defined='yes'/>
+    <elf-symbol name='dlclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dlopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='drand48_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_drand48_r' is-defined='yes'/>
+    <elf-symbol name='dup' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_dup' is-defined='yes'/>
+    <elf-symbol name='dup2' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_dup2' is-defined='yes'/>
+    <elf-symbol name='dup3' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='epoll_create' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='epoll_create1' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_create1' is-defined='yes'/>
+    <elf-symbol name='epoll_ctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_ctl' is-defined='yes'/>
+    <elf-symbol name='epoll_wait' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_epoll_wait' is-defined='yes'/>
+    <elf-symbol name='ether_aton' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ether_aton_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_aton_r' is-defined='yes'/>
+    <elf-symbol name='ether_hostton' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_hostton' is-defined='yes'/>
+    <elf-symbol name='ether_line' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_line' is-defined='yes'/>
+    <elf-symbol name='ether_ntoa' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ether_ntoa_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_ntoa_r' is-defined='yes'/>
+    <elf-symbol name='ether_ntohost' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ether_ntohost' is-defined='yes'/>
+    <elf-symbol name='eventfd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_eventfd' is-defined='yes'/>
+    <elf-symbol name='fclose' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fflush' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fork' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fread' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='free' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='freopen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='frexp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='frexpf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_frexpf' is-defined='yes'/>
+    <elf-symbol name='frexpl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fscanf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fstat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fstatfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fstatfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fstatfs64' is-defined='yes'/>
+    <elf-symbol name='fstatvfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fstatvfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fstatvfs64' is-defined='yes'/>
+    <elf-symbol name='fwrite' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_fwrite' is-defined='yes'/>
+    <elf-symbol name='get_current_dir_name' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_get_current_dir_name' is-defined='yes'/>
+    <elf-symbol name='getaddrinfo' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getcwd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getcwd' is-defined='yes'/>
+    <elf-symbol name='getdelim' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getgroups' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gethostbyaddr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gethostbyaddr_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyaddr_r' is-defined='yes'/>
+    <elf-symbol name='gethostbyname' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyname' is-defined='yes'/>
+    <elf-symbol name='gethostbyname2' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gethostbyname2_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gethostbyname_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gethostbyname_r' is-defined='yes'/>
+    <elf-symbol name='gethostent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gethostent_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getitimer' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getitimer' is-defined='yes'/>
+    <elf-symbol name='getline' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getline' is-defined='yes'/>
+    <elf-symbol name='getmntent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getmntent_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getmntent_r' is-defined='yes'/>
+    <elf-symbol name='getpeername' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_getpeername' is-defined='yes'/>
+    <elf-symbol name='getsockname' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getsockopt' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='gettimeofday' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gettimeofday' is-defined='yes'/>
+    <elf-symbol name='gmtime' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_gmtime' is-defined='yes'/>
+    <elf-symbol name='gmtime_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='iconv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_iconv' is-defined='yes'/>
+    <elf-symbol name='inet_aton' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_inet_aton' is-defined='yes'/>
+    <elf-symbol name='inet_ntop' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='inet_pton' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='initgroups' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_initgroups' is-defined='yes'/>
+    <elf-symbol name='inotify_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='inotify_init1' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_inotify_init1' is-defined='yes'/>
+    <elf-symbol name='ioctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ioctl' is-defined='yes'/>
+    <elf-symbol name='kill' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lgamma' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgamma' is-defined='yes'/>
+    <elf-symbol name='lgamma_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgamma_r' is-defined='yes'/>
+    <elf-symbol name='lgammaf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lgammaf_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lgammal' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lgammal' is-defined='yes'/>
+    <elf-symbol name='lgammal_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='listen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='localtime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='localtime_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_localtime_r' is-defined='yes'/>
+    <elf-symbol name='longjmp' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_longjmp' is-defined='yes'/>
+    <elf-symbol name='lrand48_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lstat' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lstat64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_lstat64' is-defined='yes'/>
+    <elf-symbol name='malloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_malloc' is-defined='yes'/>
+    <elf-symbol name='malloc_usable_size' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_malloc_usable_size' is-defined='yes'/>
+    <elf-symbol name='mbsnrtowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbsnrtowcs' is-defined='yes'/>
+    <elf-symbol name='mbsrtowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbsrtowcs' is-defined='yes'/>
+    <elf-symbol name='mbstowcs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mbstowcs' is-defined='yes'/>
+    <elf-symbol name='memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='memchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='memcmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='memcpy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_memcpy' is-defined='yes'/>
+    <elf-symbol name='memmove' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_memmove' is-defined='yes'/>
+    <elf-symbol name='memrchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='memset' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='mlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mlock' is-defined='yes'/>
+    <elf-symbol name='mlockall' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mlockall' is-defined='yes'/>
+    <elf-symbol name='mmap' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_mmap' is-defined='yes'/>
+    <elf-symbol name='mmap64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='modf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='modff' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_modff' is-defined='yes'/>
+    <elf-symbol name='modfl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_modfl' is-defined='yes'/>
+    <elf-symbol name='munlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_munlock' is-defined='yes'/>
+    <elf-symbol name='munlockall' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='munmap' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='nanosleep' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_nanosleep' is-defined='yes'/>
+    <elf-symbol name='on_exit' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='open' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_open' is-defined='yes'/>
+    <elf-symbol name='open64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='opendir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pipe' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pipe2' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='poll' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_poll' is-defined='yes'/>
+    <elf-symbol name='posix_memalign' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ppoll' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_ppoll' is-defined='yes'/>
+    <elf-symbol name='prctl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_prctl' is-defined='yes'/>
+    <elf-symbol name='pread' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pread64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='preadv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_preadv' is-defined='yes'/>
+    <elf-symbol name='preadv64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_preadv64' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getaffinity_np' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getaffinity_np' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getdetachstate' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getdetachstate' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getguardsize' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getguardsize' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getinheritsched' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getschedparam' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getschedpolicy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getschedpolicy' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getscope' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getscope' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getstack' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_attr_getstack' is-defined='yes'/>
+    <elf-symbol name='pthread_attr_getstacksize' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_barrier_init' is-defined='yes'/>
+    <elf-symbol name='pthread_barrier_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_broadcast' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_signal' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_cond_signal' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_timedwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_cond_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_create' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_detach' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_getschedparam' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_join' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_kill' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_kill' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_init' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_lock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_lock' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_timedlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_trylock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_mutex_trylock' is-defined='yes'/>
+    <elf-symbol name='pthread_mutex_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_once' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_once' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_init' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_rdlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_timedrdlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_timedrdlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_timedwrlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_tryrdlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_tryrdlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_trywrlock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_rwlock_trywrlock' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_rwlock_wrlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_setname_np' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_spin_init' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_lock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pthread_spin_lock' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_trylock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pthread_spin_unlock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ptrace' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='puts' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pvalloc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pwrite' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwrite' is-defined='yes'/>
+    <elf-symbol name='pwrite64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwrite64' is-defined='yes'/>
+    <elf-symbol name='pwritev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwritev' is-defined='yes'/>
+    <elf-symbol name='pwritev64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_pwritev64' is-defined='yes'/>
+    <elf-symbol name='raise' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='random_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='read' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_read' is-defined='yes'/>
+    <elf-symbol name='readdir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='readdir64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='readdir64_r' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='readdir_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_readdir_r' is-defined='yes'/>
+    <elf-symbol name='readv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_readv' is-defined='yes'/>
+    <elf-symbol name='realloc' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_realloc' is-defined='yes'/>
+    <elf-symbol name='realpath' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_realpath' is-defined='yes'/>
+    <elf-symbol name='recv' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_recv' is-defined='yes'/>
+    <elf-symbol name='recvmsg' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='remquo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquo' is-defined='yes'/>
+    <elf-symbol name='remquof' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquof' is-defined='yes'/>
+    <elf-symbol name='remquol' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_remquol' is-defined='yes'/>
+    <elf-symbol name='rmdir' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_rmdir' is-defined='yes'/>
+    <elf-symbol name='scandir' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='scandir64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='scanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_scanf' is-defined='yes'/>
+    <elf-symbol name='sched_getaffinity' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sched_getaffinity' is-defined='yes'/>
+    <elf-symbol name='sem_destroy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_destroy' is-defined='yes'/>
+    <elf-symbol name='sem_getvalue' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sem_init' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_init' is-defined='yes'/>
+    <elf-symbol name='sem_post' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sem_timedwait' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sem_timedwait' is-defined='yes'/>
+    <elf-symbol name='sem_trywait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sem_wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='send' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_send' is-defined='yes'/>
+    <elf-symbol name='sendmsg' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='setitimer' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='setjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='setlocale' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='shmctl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigaction' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigaction' is-defined='yes'/>
+    <elf-symbol name='sigemptyset' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigfillset' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigfillset' is-defined='yes'/>
+    <elf-symbol name='siglongjmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='signal' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='signalfd' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_signalfd' is-defined='yes'/>
+    <elf-symbol name='sigpending' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigpending' is-defined='yes'/>
+    <elf-symbol name='sigprocmask' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigsetjmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigsuspend' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigtimedwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigwait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sigwaitinfo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sigwaitinfo' is-defined='yes'/>
+    <elf-symbol name='sincos' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sincos' is-defined='yes'/>
+    <elf-symbol name='sincosf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sincosl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sleep' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sleep' is-defined='yes'/>
+    <elf-symbol name='socket' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='socketpair' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sscanf' is-defined='yes'/>
+    <elf-symbol name='stat' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_stat' is-defined='yes'/>
+    <elf-symbol name='stat64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='statfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='statfs64' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='statvfs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='statvfs64' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_statvfs64' is-defined='yes'/>
+    <elf-symbol name='strcasecmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strchr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strchrnul' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strcmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strcpy' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strdup' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strerror' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strerror_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strerror_r' is-defined='yes'/>
+    <elf-symbol name='strlen' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strncasecmp' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strncasecmp' is-defined='yes'/>
+    <elf-symbol name='strncmp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strncpy' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strncpy' is-defined='yes'/>
+    <elf-symbol name='strptime' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strrchr' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strrchr' is-defined='yes'/>
+    <elf-symbol name='strstr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='strtoimax' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strtoimax' is-defined='yes'/>
+    <elf-symbol name='strtoumax' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_strtoumax' is-defined='yes'/>
+    <elf-symbol name='sysinfo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_sysinfo' is-defined='yes'/>
+    <elf-symbol name='tcgetattr' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tempnam' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tempnam' is-defined='yes'/>
+    <elf-symbol name='textdomain' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_textdomain' is-defined='yes'/>
+    <elf-symbol name='time' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_time' is-defined='yes'/>
+    <elf-symbol name='times' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tmpnam' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tmpnam' is-defined='yes'/>
+    <elf-symbol name='tmpnam_r' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_tmpnam_r' is-defined='yes'/>
+    <elf-symbol name='unlink' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_unlink' is-defined='yes'/>
+    <elf-symbol name='usleep' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='valloc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vfscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_vfscanf' is-defined='yes'/>
+    <elf-symbol name='vscanf' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_vscanf' is-defined='yes'/>
+    <elf-symbol name='vsscanf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='wait' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='wait3' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wait3' is-defined='yes'/>
+    <elf-symbol name='wait4' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wait4' is-defined='yes'/>
+    <elf-symbol name='waitid' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_waitid' is-defined='yes'/>
+    <elf-symbol name='waitpid' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='wcsnrtombs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='wcsrtombs' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_wcsrtombs' is-defined='yes'/>
+    <elf-symbol name='wcstombs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='wordexp' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='write' type='func-type' binding='weak-binding' visibility='default-visibility' alias='__interceptor_write' is-defined='yes'/>
+    <elf-symbol name='writev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='__asan_cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__asan_cplus_demangle_operators' size='1488' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__asan_cplus_demangle_operators' size='1488' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/tsan/tsan_clock.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__sanitizer'>
index 7c046ac29350046975398fa6e96056bf0c71acd2..257ca67fead303bfa31e2b8e13f6d04e529de5bb 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='ORSLRelease' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ORSLReserve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ORSLReservePartial' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ORSLTryReserve' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_find_associated_mic_memory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_get_device_number' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_get_physical_device_number' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_number_of_devices' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_report' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_aligned_arena_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_aligned_arena_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_aligned_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_aligned_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_arena_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_arena_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_arena_release' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_shared_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_signaled' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_stream_completed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_stream_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Offload_stream_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16__offload_mallocmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23__offload_console_tracei' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10Marshaller11init_bufferEPcx' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10Marshaller12receive_dataEPvl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10Marshaller13send_func_ptrEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10Marshaller16receive_func_ptrEPPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10Marshaller9send_dataEPKvl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MarshallerC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MarshallerC2Ev' type='func-type' binding='weak-binding' alias='_ZN10MarshallerC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10MyoWrapper13UnloadLibraryEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MyoWrapper15RemoteThunkCallEPvS0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MyoWrapper17CreateVtableArenaEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MyoWrapperC1Ev' type='func-type' binding='weak-binding' alias='_ZN10MyoWrapperC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10MyoWrapperC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11PersistDataC1EPKvmmm' type='func-type' binding='weak-binding' alias='_ZN11PersistDataC2EPKvmmm' is-defined='yes'/>
-    <elf-symbol name='_ZN11PersistDataC2EPKvmmm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11TargetImageC1EPKcPKvmS1_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11TargetImageC2EPKcPKvmS1_m' type='func-type' binding='weak-binding' alias='_ZN11TargetImageC1EPKcPKvmS1_m' is-defined='yes'/>
-    <elf-symbol name='_ZN12OffloadTimerC1EP20OffloadHostTimerData16OffloadHostPhase' type='func-type' binding='weak-binding' alias='_ZN12OffloadTimerC2EP20OffloadHostTimerData16OffloadHostPhase' is-defined='yes'/>
-    <elf-symbol name='_ZN12OffloadTimerC2EP20OffloadHostTimerData16OffloadHostPhase' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12OffloadTimerD1Ev' type='func-type' binding='weak-binding' alias='_ZN12OffloadTimerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN12OffloadTimerD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTable13find_ptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTable15insert_ptr_dataEPKvmRb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTable15remove_ptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTableC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTableC2Ev' type='func-type' binding='weak-binding' alias='_ZN12PtrDataTableC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTableD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12PtrDataTableD2Ev' type='func-type' binding='weak-binding' alias='_ZN12PtrDataTableD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN14mutex_locker_tC1ER7mutex_t' type='func-type' binding='weak-binding' alias='_ZN14mutex_locker_tC2ER7mutex_t' is-defined='yes'/>
-    <elf-symbol name='_ZN14mutex_locker_tC2ER7mutex_t' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14mutex_locker_tD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14mutex_locker_tD2Ev' type='func-type' binding='weak-binding' alias='_ZN14mutex_locker_tD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableList14process_vtableEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableList4dumpEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableList7processEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableList8is_emptyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableList9add_tableEPN9TableListI11MYOVarTableE4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableListC1Ev' type='func-type' binding='weak-binding' alias='_ZN15MYOVarTableListC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableListC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableListD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MYOVarTableListD2Ev' type='func-type' binding='weak-binding' alias='_ZN15MYOVarTableListD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableList4dumpEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableList7processEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableList8is_emptyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableList9add_tableEPN9TableListI12MYOFuncTableE4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableListC1Ev' type='func-type' binding='weak-binding' alias='_ZN16MYOFuncTableListC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableListC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableListD1Ev' type='func-type' binding='weak-binding' alias='_ZN16MYOFuncTableListD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOFuncTableListD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableList4dumpEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableList7processEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableList8is_emptyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableList9add_tableEPN9TableListI12MYOInitTableE4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableListC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableListC2Ev' type='func-type' binding='weak-binding' alias='_ZN16MYOInitTableListC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableListD1Ev' type='func-type' binding='weak-binding' alias='_ZN16MYOInitTableListD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MYOInitTableListD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor10get_streamEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor10set_streamEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor11is_signaledEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor12offload_wrapEPKcbP7VarDescP8VarDesc2iPPKviS8_iS7_12OffloadFlags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor13find_ptr_dataERP7PtrDataPvllbb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor14alloc_ptr_dataERP7PtrDataPvlllibbb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor14offload_finishEb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvE9read_nextEb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvEC1Ev' type='func-type' binding='weak-binding' alias='_ZN17OffloadDescriptor15ReadArrElementsIPvEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlE9read_nextEb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlEC1Ev' type='func-type' binding='weak-binding' alias='_ZN17OffloadDescriptor15ReadArrElementsIlEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor15setup_misc_dataEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor16init_mic_addressEP7PtrData' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor16report_coi_errorE11error_types9COIRESULT' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor17send_pointer_dataEbPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor17setup_descriptorsEP7VarDescP8VarDesc2iiPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor17wait_dependenciesEPPKvim' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor18gather_copyin_dataEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor20init_static_ptr_dataEP7PtrData' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor20nullify_target_stackEP9coibufferm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor20receive_pointer_dataEbbPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor20scatter_copyout_dataEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor20setup_omp_async_infoEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor26get_stream_in_dependenciesERjRP8coievent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor28offload_stack_memory_managerEPKviiiPb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor28register_omp_event_call_backEPK8coieventPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor31gen_var_descs_for_pointer_arrayEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor31send_noncontiguous_pointer_dataEiP7PtrDataS1_P8coieventRmjS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor34receive_noncontiguous_pointer_dataEiP9coibufferP8coieventRmjS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor7cleanupEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor7computeEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptor7offloadEPKcbP7VarDescP8VarDesc2iPPKviS8_iS7_12OffloadFlags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptorC1EiP15_Offload_statusbbP20OffloadHostTimerData' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptorC2EiP15_Offload_statusbbP20OffloadHostTimerData' type='func-type' binding='weak-binding' alias='_ZN17OffloadDescriptorC1EiP15_Offload_statusbbP20OffloadHostTimerData' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptorD1Ev' type='func-type' binding='weak-binding' alias='_ZN17OffloadDescriptorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN17OffloadDescriptorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6DynLibC1EPKcPKvP10coilibrary' type='func-type' binding='weak-binding' alias='_ZN6DynLibC2EPKcPKvP10coilibrary' is-defined='yes'/>
-    <elf-symbol name='_ZN6DynLibC2EPKcPKvP10coilibrary' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine10add_signalEPKvP17OffloadDescriptor' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine11find_signalEPKvb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine11init_deviceEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine11set_indexesEii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine12fini_processEb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine12get_pipelineEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine12get_pipelineEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine12init_processEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine13find_ptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine13get_auto_varsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine13get_thread_idEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine13init_ptr_dataEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine14find_auto_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine14load_librariesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine14stream_destroyEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine14unload_libraryEPKvPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine15insert_ptr_dataEPKvmRb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine15remove_ptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine16insert_auto_dataEPKvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine16remove_auto_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine19destroy_thread_dataEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine19find_targetptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine21insert_targetptr_dataEPKvmRb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine21remove_targetptr_dataEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine4initEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine7add_libERK11TargetImage' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine7computeEmRKNSt7__cxx114listIP9coibufferSaIS3_EEEPKvtPvtjPK8coieventPSB_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine8fini_myoEP8coievent' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine8init_myoEP8coievent' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6EngineC1Ev' type='func-type' binding='weak-binding' alias='_ZN6EngineC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN6EngineC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6EngineD1Ev' type='func-type' binding='weak-binding' alias='_ZN6EngineD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN6EngineD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream10add_streamEii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream10get_deviceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream11find_streamEmb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream12get_pipelineEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream12set_pipelineEP11coipipeline' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream14get_cpu_numberEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream16get_last_offloadEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream16set_last_offloadEP17OffloadDescriptor' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6StreamC1Eii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6StreamC2Eii' type='func-type' binding='weak-binding' alias='_ZN6StreamC1Eii' is-defined='yes'/>
-    <elf-symbol name='_ZN6StreamD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6StreamD2Ev' type='func-type' binding='weak-binding' alias='_ZN6StreamD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN6Thread12set_pipelineEiP11coipipeline' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Thread13get_auto_varsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6ThreadC1EPl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6ThreadC2EPl' type='func-type' binding='weak-binding' alias='_ZN6ThreadC1EPl' is-defined='yes'/>
-    <elf-symbol name='_ZN6ThreadD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6ThreadD2Ev' type='func-type' binding='weak-binding' alias='_ZN6ThreadD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrData13add_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrData16remove_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataC1EPKvm' type='func-type' binding='weak-binding' alias='_ZN7PtrDataC2EPKvm' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataC1ERKS_' type='func-type' binding='weak-binding' alias='_ZN7PtrDataC2ERKS_' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataC2EPKvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataC2ERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7PtrDataD2Ev' type='func-type' binding='weak-binding' alias='_ZN7PtrDataD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_t4lockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_t6unlockEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_tC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_tC2Ev' type='func-type' binding='weak-binding' alias='_ZN7mutex_tC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_tD1Ev' type='func-type' binding='weak-binding' alias='_ZN7mutex_tD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN7mutex_tD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8AutoData13add_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8AutoData16remove_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8AutoData17nullify_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8AutoDataC1EPKvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8AutoDataC2EPKvm' type='func-type' binding='weak-binding' alias='_ZN8AutoDataC1EPKvm' is-defined='yes'/>
-    <elf-symbol name='_ZN8Iterator8new_nodeEPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8IteratorC1EPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8IteratorC1Ev' type='func-type' binding='weak-binding' alias='_ZN8IteratorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN8IteratorC2EPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' alias='_ZN8IteratorC1EPN9TableListI8VarTableE4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN8IteratorC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8IteratorppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8MemRangeC1EPKvm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8MemRangeC2EPKvm' type='func-type' binding='weak-binding' alias='_ZN8MemRangeC1EPKvm' is-defined='yes'/>
-    <elf-symbol name='_ZN8MyoTableC1EP18MyoiSharedVarEntryi' type='func-type' binding='weak-binding' alias='_ZN8MyoTableC2EP18MyoiSharedVarEntryi' is-defined='yes'/>
-    <elf-symbol name='_ZN8MyoTableC2EP18MyoiSharedVarEntryi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' alias='_ZN9TableListI11MYOVarTableEC1EPNS1_4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI11MYOVarTableED2Ev' type='func-type' binding='weak-binding' alias='_ZN9TableListI11MYOVarTableED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' alias='_ZN9TableListI12MYOFuncTableEC2EPNS1_4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableED1Ev' type='func-type' binding='weak-binding' alias='_ZN9TableListI12MYOFuncTableED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOFuncTableED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' alias='_ZN9TableListI12MYOInitTableEC2EPNS1_4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableED1Ev' type='func-type' binding='weak-binding' alias='_ZN9TableListI12MYOInitTableED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI12MYOInitTableED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' alias='_ZN9TableListI8VarTableEC2EPNS1_4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI8VarTableED2Ev' type='func-type' binding='weak-binding' alias='_ZN9TableListI8VarTableED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' alias='_ZN9TableListI9FuncTableEC1EPNS1_4NodeE' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableED1Ev' type='func-type' binding='weak-binding' alias='_ZN9TableListI9FuncTableED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9TableListI9FuncTableED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE10deallocateEPS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_IS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_JS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_IS4_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1ERKS5_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2ERKS5_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_JRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_JS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE10deallocateEPS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE7destroyIS3_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_IRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_JRKS3_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_JRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE10deallocateEPS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE7destroyIS3_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_IRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_JRKS3_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_JRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_IRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_JS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE10deallocateEPS9_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE7destroyIS8_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE8allocateEmS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_IRKSt21piecewise_construct_tSt5tupleIIRS5_EESF_IIEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_JRKSt21piecewise_construct_tSt5tupleIJRS5_EESF_IJEEEEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_JRKSt21piecewise_construct_tSt5tupleIJRS5_EESF_IJEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE10deallocateEPS7_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKS6_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKS6_EEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKSt21piecewise_construct_tSt5tupleIIRS3_EESD_IIEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKS6_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKSt21piecewise_construct_tSt5tupleIJRS3_EESD_IJEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKSt21piecewise_construct_tSt5tupleIIRS3_EESD_IIEEEEEvPT_DpOT0_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS8_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS8_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED1Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE17_S_select_on_copyERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11PersistDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11PersistDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11TargetImageE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11TargetImageE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI6DynLibE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI6DynLibE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8MyoTableE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8MyoTableE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP9coibufferE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP9coibufferE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIPcE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIPcE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC2Ev' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufImE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufImE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS6_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS6_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS5_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS5_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC2ES7_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEclINS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEES5_EEbT_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEclIS5_NS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEEEEbRT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEclINS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEESF_EEbT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops15__iter_comp_valIPFbPKN8VarTable5EntryES5_EEENS0_14_Iter_comp_valIT_EENS0_15_Iter_comp_iterIS9_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops15__val_comp_iterIPFbPKN8VarTable5EntryES5_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS9_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFbPKN8VarTable5EntryES5_EEENS0_15_Iter_comp_iterIT_EES9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxeqIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxltIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxmiIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEENS_17__normal_iteratorIT_T0_E15difference_typeERKSC_SF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxneIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESF_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxxneIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10Marshaller12get_tfr_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper10RemoteCallEPKcPvi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper10SharedFreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper11ArenaCreateE16MyoOwnershipTypeiPj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper11CheckResultEPKc8MyoError' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper12ArenaAcquireEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper12ArenaReleaseEj' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper12SharedMallocEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper12is_availableEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper14GetVtableArenaEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper17SharedAlignedFreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper19SharedAlignedMallocEmm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper21HostFptrTableRegisterEPvii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper21HostVarTablePropagateEPvi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper21PostInitFuncSupportedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper22SharedAlignedArenaFreeEjPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper24SharedAlignedArenaMallocEjmm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper7AcquireEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper7LibFiniEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper7LibInitEPvS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper7ReleaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10MyoWrapper9GetResultEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK17OffloadDescriptor14get_timer_dataEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK17OffloadDescriptor19translate_coi_errorE9COIRESULT' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK6Engine11get_processEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK6Engine17get_logical_indexEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK6Engine18get_physical_indexEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK6Thread12get_pipelineEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK7PtrData13get_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK7PtrDataltERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8AutoData13get_referenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8AutoDataltERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8IteratordeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8IteratorneERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8MemRange3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8MemRange5startEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8MemRange6lengthEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8MemRange8containsERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8MemRange8overlapsERKS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8AutoDataE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8AutoDataE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8MyoTableE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8MyoTableE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufIP9coibufferE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufIP9coibufferE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufImE6_M_ptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufImE7_M_addrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEmiEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEplEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10_List_nodeI8MyoTableE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10_List_nodeIP9coibufferE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10_List_nodeImE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10_Select1stISt4pairIKPKvP17OffloadDescriptorEEclERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10_Select1stISt4pairIKmP6StreamEEclERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Base_bitsetILm16EE10_M_getwordEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Base_bitsetILm2EE11_M_do_countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13_Rb_tree_nodeI7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13_Rb_tree_nodeI8AutoDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13_Rb_tree_nodeISt4pairIKmP6StreamEE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPPKN8VarTable5EntryEE4baseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13move_iteratorIPPKN8VarTable5EntryEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI6DynLibEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorI6DynLibEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIP7PtrDataEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIP7PtrDataEneERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIPcEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14_List_iteratorIPcEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorI7PtrDataEeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorI8AutoDataEeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEeqERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEneERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEeqERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEneERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorI11PersistDataE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorI11PersistDataEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorI6DynLibE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorI8MyoTableEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorI8MyoTableEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIP9coibufferEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt20_List_const_iteratorIP9coibufferEneERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEneERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEE13_M_const_castEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE8key_compEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE8key_compEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3setI7PtrDataSt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3setI8AutoDataSt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4lessI7PtrDataEclERKS0_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4lessI8AutoDataEclERKS0_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4lessIPKvEclERKS1_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4lessImEclERKmS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm1024EE15_Unchecked_testEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm1024EE4testEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm1024EE8_M_checkEmPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm1024EE9referencecvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm128EE5countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm128EE8_M_checkEmPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6bitsetILm128EE9referencecvbEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE8max_sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE13_M_node_countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIP9coibufferSaIS2_EE13_M_node_countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIPcSaIS1_EE13_M_node_countEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx114listIP7PtrDataSaIS2_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7__cxx114listIPcSaIS1_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeclIS0_EEPSt13_Rb_tree_nodeIS0_EOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeclIS0_EEPSt13_Rb_tree_nodeIS0_EOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8key_compEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeclIRKS4_EEPSt13_Rb_tree_nodeIS4_EOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE4sizeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_rootEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8key_compEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_IdentityI7PtrDataEclERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_IdentityI7PtrDataEclERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_IdentityI8AutoDataEclERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9_IdentityI8AutoDataEclERS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC1ERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC2ERKS3_' type='func-type' binding='weak-binding' alias='_ZNSaIPKN8VarTable5EntryEEC1ERKS3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaIPKN8VarTable5EntryEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaIPKN8VarTable5EntryEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI11PersistDataEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI11PersistDataEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI11TargetImageEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI11TargetImageEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI6DynLibEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI6DynLibEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI8MyoTableEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeI8MyoTableEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIP7PtrDataEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIP7PtrDataEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIP9coibufferEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIP9coibufferEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIPcEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIPcEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIPcEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIPcEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt10_List_nodeIPcEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt10_List_nodeIPcEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS6_' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EEC1ES3_' type='func-type' binding='weak-binding' alias='_ZNSt10_Head_baseILm0ERKPKvLb0EEC2ES3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EEC2ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EEC1ES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EEC2ES1_' type='func-type' binding='weak-binding' alias='_ZNSt10_Head_baseILm0ERKmLb0EEC1ES1_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeI11PersistDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeI11TargetImageE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeI6DynLibE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeI8MyoTableE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIP7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIP9coibufferE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeIPcE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_nodeImE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEE7_M_headERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EJRKPKvEEC2EOS4_,_ZNSt11_Tuple_implILm0EIRKPKvEEC2EOS4_,_ZNSt11_Tuple_implILm0EJRKPKvEEC1EOS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC1ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC2ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEE7_M_headERS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC1EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC1ES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC2ES1_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EIRKmEEC1ES1_,_ZNSt11_Tuple_implILm0EJRKmEEC1ES1_,_ZNSt11_Tuple_implILm0EJRKmEEC2ES1_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEE7_M_headERS4_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EIRKPKvEE7_M_headERS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC1ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC2ES3_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EJRKPKvEEC1ES3_,_ZNSt11_Tuple_implILm0EIRKPKvEEC1ES3_,_ZNSt11_Tuple_implILm0EIRKPKvEEC2ES3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEE7_M_headERS2_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EIRKmEE7_M_headERS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC1EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC1ES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC2EOS2_' type='func-type' binding='weak-binding' alias='_ZNSt11_Tuple_implILm0EJRKmEEC1EOS2_,_ZNSt11_Tuple_implILm0EIRKmEEC2EOS2_,_ZNSt11_Tuple_implILm0EIRKmEEC1EOS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC2ES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26bidirectional_iterator_tagE8__copy_mISt14_List_iteratorIPcEPS4_EET0_T_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE8__copy_mISt13move_iteratorIPPKN8VarTable5EntryEES8_EET0_T_SB_SA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE10_M_getwordEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE10_S_maskbitEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE11_M_do_resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE11_S_whichbitEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE12_S_whichwordEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm16EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE10_M_getwordEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE10_S_maskbitEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE11_M_do_resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE11_S_whichbitEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE12_S_whichwordEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Destroy_auxILb1EE9__destroyIPPKN8VarTable5EntryEEEvT_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE11_M_allocateEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC1ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC2ERKS4_' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC1ERKS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE13_M_deallocateEPS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC1ERKS4_' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC2ERKS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC2ERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt13_Rb_tree_nodeI7PtrDataEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt13_Rb_tree_nodeI8AutoDataEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEE9_M_valptrEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC1ES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC2ES4_' type='func-type' binding='weak-binding' alias='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC1ES4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorI11PersistDataEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorI11PersistDataEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorI11TargetImageEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorI6DynLibEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI8MyoTableEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorI8MyoTableEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorI8MyoTableEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorIP7PtrDataEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIP9coibufferEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIP9coibufferEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorIP9coibufferEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIPcEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt14_List_iteratorIPcEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIPcEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14_List_iteratorIPcEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC2ERS3_PS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC1ERS3_PS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC2ERS3_PS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC2ERS3_PS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC1ERS4_PS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC2ERS4_PS3_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC1ERS4_PS3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC1ERS4_PS3_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC2ERS4_PS3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC2ERS4_PS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC2ERS3_PS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEaSEDn' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE10_S_destroyIS4_S3_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE11_S_max_sizeIKS4_EEDTcldtfp_8max_sizeEERT_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_IS3_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_JS3_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_JS3_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE8allocateERS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE8max_sizeERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_IS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_JS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_JS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE10_S_destroyIS4_S2_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE7destroyIS2_EEvRS4_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE8allocateERS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE10_S_destroyIS4_S2_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE7destroyIS2_EEvRS4_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE8allocateERS4_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE10_S_destroyIS9_S7_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE10deallocateERS9_PS8_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEENSt9enable_ifIXsrSt6__and_IINSA_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_JRKSt21piecewise_construct_tSt5tupleIJRS4_EESF_IJEEEEENSt9enable_ifIXsrSt6__and_IJNSA_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEENSt9enable_ifIXsrSt6__and_IINSA_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE7destroyIS7_EEvRS9_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE8allocateERS9_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_JRKSt21piecewise_construct_tSt5tupleIJRS4_EESF_IJEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE10_S_destroyIS7_S5_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE10deallocateERS7_PS6_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKS5_EEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKS5_EEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKS5_EEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKSt21piecewise_construct_tSt5tupleIJRS2_EESD_IJEEEEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE37select_on_container_copy_constructionERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE7destroyIS5_EEvRS7_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE8allocateERS7_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9_S_selectIKS7_EET_RSB_z' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKSt21piecewise_construct_tSt5tupleIJRS2_EESD_IJEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' type='func-type' binding='weak-binding' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt17_Rb_tree_iteratorI7PtrDataEC2EPSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt17_Rb_tree_iteratorI8AutoDataEC1EPSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1EPSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC2EPSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18_Rb_tree_node_base10_S_maximumEPS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18_Rb_tree_node_base10_S_minimumEPS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18_Rb_tree_node_baseC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt18_Rb_tree_node_baseC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18_Rb_tree_node_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI11PersistDataEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI11PersistDataEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' alias='_ZNSt20_List_const_iteratorI11PersistDataEC1ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI6DynLibEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' alias='_ZNSt20_List_const_iteratorI6DynLibEC2ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI6DynLibEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' alias='_ZNSt20_List_const_iteratorI8MyoTableEC1ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC1EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' alias='_ZNSt20_List_const_iteratorIP9coibufferEC2EPKNSt8__detail15_List_node_baseE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC1ERKSt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC2ERKSt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' alias='_ZNSt20_List_const_iteratorIP9coibufferEC1ERKSt14_List_iteratorIS1_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIN7VarList8BufEntryEEEPT_PKS5_S8_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIPKN8VarTable5EntryEEEPT_PKS7_SA_S8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPPKN8VarTable5EntryEES7_EET0_T_SA_S9_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2ERKSt17_Rb_tree_iteratorIS0_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1EPKSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2EPKSt18_Rb_tree_node_base' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1ERKSt17_Rb_tree_iteratorIS0_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEppEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1ERKSt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2ERKSt17_Rb_tree_iteratorIS6_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2ERKSt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC1ERKSt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC2ERKSt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' alias='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC1ERKSt17_Rb_tree_iteratorIS4_E' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE11lower_boundERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE4findERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEixERS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE11lower_boundERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE4findERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE5eraseB5cxx11ESt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC1ERKS8_' type='func-type' binding='weak-binding' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2ERKS8_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEixERS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE6insertEOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE6insertEOS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE' type='func-type' binding='weak-binding' alias='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE,_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE,_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE' type='func-type' binding='weak-binding' alias='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE,_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE,_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE' type='func-type' binding='weak-binding' alias='_ZNSt4pairIKmP6StreamEC2IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE,_ZNSt4pairIKmP6StreamEC2IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE,_ZNSt4pairIKmP6StreamEC1IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' type='func-type' binding='weak-binding' alias='_ZNSt4pairIKmP6StreamEC2IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE,_ZNSt4pairIKmP6StreamEC1IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE,_ZNSt4pairIKmP6StreamEC1IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEEOT_RKS1_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEEOT_RKS1_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEERKS1_OT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_S4_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_S4_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEEOT_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEERKS1_OT_' type='func-type' binding='weak-binding' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEERKS1_OT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_S4_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC1IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC1IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC2IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC1IS2_bLb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC1IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC1IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC2IS2_bLb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC2IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC1IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC1IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' alias='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' alias='_ZNSt5tupleIIRKPKvEEC2EOS4_,_ZNSt5tupleIJRKPKvEEC1EOS4_,_ZNSt5tupleIJRKPKvEEC2EOS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC1IvLb1EEES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC2IvLb1EEES3_' type='func-type' binding='weak-binding' alias='_ZNSt5tupleIJRKPKvEEC2IvLb1EEES3_,_ZNSt5tupleIJRKPKvEEC1IvLb1EEES3_,_ZNSt5tupleIIRKPKvEEC1IvLb1EEES3_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKmEEC1EOS2_' type='func-type' binding='weak-binding' alias='_ZNSt5tupleIJRKmEEC1EOS2_,_ZNSt5tupleIIRKmEEC2EOS2_,_ZNSt5tupleIJRKmEEC2EOS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKmEEC1IvLb1EEES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKmEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIIRKmEEC2IvLb1EEES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC1IvLb1EEES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC2IvLb1EEES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKmEEC1EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKmEEC1IvLb1EEES1_' type='func-type' binding='weak-binding' alias='_ZNSt5tupleIJRKmEEC2IvLb1EEES1_,_ZNSt5tupleIIRKmEEC2IvLb1EEES1_,_ZNSt5tupleIIRKmEEC1IvLb1EEES1_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKmEEC2EOS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5tupleIJRKmEEC2IvLb1EEES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE14_Unchecked_setEmi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE3setEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceC1ERS0_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceC2ERS0_m' type='func-type' binding='weak-binding' alias='_ZNSt6bitsetILm1024EE9referenceC1ERS0_m' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceD2Ev' type='func-type' binding='weak-binding' alias='_ZNSt6bitsetILm1024EE9referenceD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm1024EEixEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE14_Unchecked_setEmi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE3setEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceC1ERS0_m' type='func-type' binding='weak-binding' alias='_ZNSt6bitsetILm128EE9referenceC2ERS0_m' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceC2ERS0_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt6bitsetILm128EE9referenceD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6bitsetILm128EEixEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIIS3_EEEvDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIJS3_EEEvDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIJS3_EEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIIS3_EEEvDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIJS3_EEEvDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIIS3_EEEvDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_range_initializeI8IteratorEEvT_S8_St18input_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE22_M_initialize_dispatchI8IteratorEEvT_S8_St12__false_type' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC1I8IteratorvEET_S8_RKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC2I8IteratorvEET_S8_RKS4_' type='func-type' binding='weak-binding' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC1I8IteratorvEET_S8_RKS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_dec_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_dec_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE10push_frontERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5eraseESt20_List_const_iteratorIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5eraseESt20_List_const_iteratorIS1_ES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5frontEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE8_M_eraseESt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9push_backEOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9push_backERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE10push_frontEOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE5eraseESt20_List_const_iteratorIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE8_M_eraseESt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9push_backEOS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE10push_frontERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIIRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIJRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIIRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIJRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9push_backERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9push_backERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIPcSaIS1_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt7__cxx114listIPcSaIS1_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE10_M_insert_IS0_NS6_11_Alloc_nodeEEESt17_Rb_tree_iteratorIS0_EPSt18_Rb_tree_node_baseSC_OT_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11equal_rangeERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE8_M_resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_upper_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE16_M_insert_uniqueIS0_EESt4pairISt17_Rb_tree_iteratorIS0_EbEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIJS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE24_M_get_insert_unique_posERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_M_endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_eraseEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE10_M_insert_IS0_NS6_11_Alloc_nodeEEESt17_Rb_tree_iteratorIS0_EPSt18_Rb_tree_node_baseSC_OT_RT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11equal_rangeERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE8_M_resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_upper_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE16_M_insert_uniqueIS0_EESt4pairISt17_Rb_tree_iteratorIS0_EbEOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIJS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE24_M_get_insert_unique_posERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_M_endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_eraseEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_leftmostEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11lower_boundERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE12_M_rightmostEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSE_PSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS6_EPSt18_Rb_tree_node_baseRS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE24_M_get_insert_unique_posERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS6_ERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE4findERS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_M_endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_S_keyEPKSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_valueEPKSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE10_S_maximumEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE10_S_minimumEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC1ERSA_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC2ERSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC2ERSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_leftmostEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11lower_boundERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_rightmostEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_M_clone_nodeINSA_11_Alloc_nodeEEEPSt13_Rb_tree_nodeIS4_EPKSE_RT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIIRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSC_PSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS4_EPSt18_Rb_tree_node_baseRS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIJRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE24_M_get_insert_unique_posERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS4_ERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE3endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE4findERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE5beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE5eraseB5cxx11ESt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_M_endEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_S_keyEPKSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_copyEPKSt13_Rb_tree_nodeIS4_EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_copyINSA_11_Alloc_nodeEEEPSt13_Rb_tree_nodeIS4_EPKSE_PSt18_Rb_tree_node_baseRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_rootEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_S_leftEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_beginEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_rightEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_valueEPKSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1ERKSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2ERKSA_' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1ERKSA_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4setfESt13_Ios_FmtflagsS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC2Ev' type='func-type' binding='weak-binding' alias='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI11PersistDataEEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI11TargetImageEEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI6DynLibEEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI8MyoTableEEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIP7PtrDataEEEPT_RS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIP9coibufferEEEPT_RS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIPcEEEPT_RS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops14_Iter_comp_valIPFbS5_S5_EEEEvT_T0_SH_T1_T2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__sort_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKPKvIEERT0_RSt11_Tuple_implIXT_EIS4_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKPKvJEERT0_RSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' alias='_ZSt12__get_helperILm0ERKPKvIEERT0_RSt11_Tuple_implIXT_EIS4_DpT1_EE' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKmIEERT0_RSt11_Tuple_implIXT_EIS2_DpT1_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__get_helperILm0ERKmJEERT0_RSt11_Tuple_implIXT_EJS2_DpT1_EE' type='func-type' binding='weak-binding' alias='_ZSt12__get_helperILm0ERKmIEERT0_RSt11_Tuple_implIXT_EIS2_DpT1_EE' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEEET_SB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__miter_baseISt13move_iteratorIPPKN8VarTable5EntryEEET_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__miter_baseISt14_List_iteratorIPcEET_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIPPKN8VarTable5EntryEET_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIPPKN8VarTable5EntryESt6vectorIS3_SaIS3_EEET_N9__gnu_cxx17__normal_iteratorIS8_T0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseIPPcET_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseISt13move_iteratorIPPKN8VarTable5EntryEEET_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12__niter_baseISt14_List_iteratorIPcEET_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt12setprecisioni' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__copy_move_aILb0ESt14_List_iteratorIPcEPS1_ET1_T0_S5_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__copy_move_aILb1ESt13move_iteratorIPPKN8VarTable5EntryEES5_ET1_T0_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13move_backwardIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_ET0_T_SC_SB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__copy_move_a2ILb0ESt14_List_iteratorIPcEPS1_ET1_T0_S5_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__copy_move_a2ILb1ESt13move_iteratorIPPKN8VarTable5EntryEES5_ET1_T0_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__partial_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPPKN8VarTable5EntryEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__unguarded_partitionIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEET_SG_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__copy_move_backward_aILb1EPPKN8VarTable5EntryES4_ET1_T0_S6_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPPKN8VarTable5EntryEES5_S4_ET0_T_S8_S7_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt23__copy_move_backward_a2ILb1EN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_ET1_T0_SC_SB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops14_Val_comp_iterIPFbS5_S5_EEEEvT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt26__unguarded_insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt27__unguarded_partition_pivotIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEET_SG_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPKN8VarTable5EntryESt13move_iteratorIPS3_EET0_PT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPPKN8VarTable5EntryES4_SaIS3_EET0_T_S7_S6_RT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3decRSt8ios_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EIRKPKvEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EIRKmEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS6_' type='func-type' binding='weak-binding' alias='_ZSt3getILm0EJRKmEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS6_' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRKPKvEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS8_' type='func-type' binding='weak-binding' alias='_ZSt3getILm0EIRKPKvEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS8_' is-defined='yes'/>
-    <elf-symbol name='_ZSt3getILm0EJRKmEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3hexRSt8ios_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4__lgl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyISt13move_iteratorIPPKN8VarTable5EntryEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyISt14_List_iteratorIPcEPS1_ET0_T_S5_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIPKN8VarTable5EntryEEONSt16remove_referenceIT_E4typeEOS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIR11TargetImageEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIR6DynLibEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIR7PtrDataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIR8AutoDataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIR8MyoTableEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPKN8VarTable5EntryEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEEPFbS5_S5_EEvT_SD_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IISt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IJSt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' type='func-type' binding='weak-binding' alias='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IISt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' is-defined='yes'/>
-    <elf-symbol name='_ZSt5fixedRSt8ios_base' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt6__sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardI11TargetImageEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardI6DynLibEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardI7PtrDataEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardI8AutoDataEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardI8MyoTableEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIPKN8VarTable5EntryEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRK11PersistDataEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRK11TargetImageEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKP7PtrDataEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKP9coibufferEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKPKvEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKPcEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt21piecewise_construct_tEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKSt4pairIKmP6StreamEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRKmEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeI7PtrDataEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeI8AutoDataEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeISt4pairIKmP6StreamEEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRPSt18_Rb_tree_node_baseEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSt17_Rb_tree_iteratorI7PtrDataEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRSt17_Rb_tree_iteratorI8AutoDataEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIRbEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt17_Rb_tree_iteratorI7PtrDataEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt17_Rb_tree_iteratorI8AutoDataEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIIEEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' alias='_ZSt7forwardISt5tupleIJEEEOT_RNSt16remove_referenceIS2_E4typeE' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIIRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIIRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' alias='_ZSt7forwardISt5tupleIJRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIJEEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIJRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' alias='_ZSt7forwardISt5tupleIIRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardISt5tupleIJRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7forwardIbEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPPKN8VarTable5EntryEEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8_DestroyIPPKN8VarTable5EntryES3_EvT_S5_RSaIT0_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9iter_swapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_EvT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStaNRSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStanSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStcoSt13_Ios_Fmtflags' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStmiIPPKN8VarTable5EntryEEDTmicldtfp_4baseEcldtfp0_4baseEERKSt13move_iteratorIT_ESA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStoRRSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStorSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPvS_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnwmPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_target_so_loaded' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_target_so_unloaded' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__intel_cilk_for_32_offload' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__intel_cilk_for_64_offload' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoIsAvailable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoProcessTables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoRegisterTables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoRegisterTables1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoRemoveTables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myoiRemoteIThunkCall' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_offload' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_offload1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_offload2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_offload3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_offload_call_count' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_register_image' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_register_tables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_target_acquire' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_target_acquire1' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_target_acquire2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_target_image_is_executable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_unregister_image' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_unregister_tables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='for__continue_traceback' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='offload_proxy_task_completed_ooo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_destroy_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_destroy_nest_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_default_device' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_dynamic_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_max_threads_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_nested_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_num_devices' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_num_procs_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_get_schedule_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_init_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_init_nest_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_default_device' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_dynamic_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_nest_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_nested_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_num_threads_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_set_schedule_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_test_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_test_nest_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_unset_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='omp_unset_nest_lock_target' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='ORSLRelease' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ORSLReserve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ORSLReservePartial' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ORSLTryReserve' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_find_associated_mic_memory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_get_device_number' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_get_physical_device_number' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_number_of_devices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_report' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_aligned_arena_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_aligned_arena_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_aligned_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_aligned_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_arena_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_arena_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_arena_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_shared_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_signaled' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_stream_completed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_stream_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Offload_stream_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16__offload_mallocmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23__offload_console_tracei' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10Marshaller11init_bufferEPcx' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10Marshaller12receive_dataEPvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10Marshaller13send_func_ptrEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10Marshaller16receive_func_ptrEPPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10Marshaller9send_dataEPKvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MarshallerC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MarshallerC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10MarshallerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10MyoWrapper13UnloadLibraryEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MyoWrapper15RemoteThunkCallEPvS0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MyoWrapper17CreateVtableArenaEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MyoWrapperC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10MyoWrapperC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10MyoWrapperC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11PersistDataC1EPKvmmm' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN11PersistDataC2EPKvmmm' is-defined='yes'/>
+    <elf-symbol name='_ZN11PersistDataC2EPKvmmm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11TargetImageC1EPKcPKvmS1_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11TargetImageC2EPKcPKvmS1_m' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN11TargetImageC1EPKcPKvmS1_m' is-defined='yes'/>
+    <elf-symbol name='_ZN12OffloadTimerC1EP20OffloadHostTimerData16OffloadHostPhase' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN12OffloadTimerC2EP20OffloadHostTimerData16OffloadHostPhase' is-defined='yes'/>
+    <elf-symbol name='_ZN12OffloadTimerC2EP20OffloadHostTimerData16OffloadHostPhase' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12OffloadTimerD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN12OffloadTimerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN12OffloadTimerD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTable13find_ptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTable15insert_ptr_dataEPKvmRb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTable15remove_ptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTableC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTableC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN12PtrDataTableC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTableD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12PtrDataTableD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN12PtrDataTableD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14mutex_locker_tC1ER7mutex_t' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14mutex_locker_tC2ER7mutex_t' is-defined='yes'/>
+    <elf-symbol name='_ZN14mutex_locker_tC2ER7mutex_t' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14mutex_locker_tD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14mutex_locker_tD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14mutex_locker_tD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableList14process_vtableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableList4dumpEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableList7processEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableList8is_emptyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableList9add_tableEPN9TableListI11MYOVarTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableListC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN15MYOVarTableListC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableListC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableListD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MYOVarTableListD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN15MYOVarTableListD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableList4dumpEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableList7processEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableList8is_emptyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableList9add_tableEPN9TableListI12MYOFuncTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableListC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MYOFuncTableListC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableListC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableListD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MYOFuncTableListD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOFuncTableListD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableList4dumpEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableList7processEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableList8is_emptyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableList9add_tableEPN9TableListI12MYOInitTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableListC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableListC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MYOInitTableListC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableListD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MYOInitTableListD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MYOInitTableListD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor10get_streamEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor10set_streamEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor11is_signaledEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor12offload_wrapEPKcbP7VarDescP8VarDesc2iPPKviS8_iS7_12OffloadFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor13find_ptr_dataERP7PtrDataPvllbb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor14alloc_ptr_dataERP7PtrDataPvlllibbb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor14offload_finishEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvE9read_nextEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17OffloadDescriptor15ReadArrElementsIPvEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIPvEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlE9read_nextEb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17OffloadDescriptor15ReadArrElementsIlEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15ReadArrElementsIlEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor15setup_misc_dataEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor16init_mic_addressEP7PtrData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor16report_coi_errorE11error_types9COIRESULT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor17send_pointer_dataEbPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor17setup_descriptorsEP7VarDescP8VarDesc2iiPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor17wait_dependenciesEPPKvim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor18gather_copyin_dataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor20init_static_ptr_dataEP7PtrData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor20nullify_target_stackEP9coibufferm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor20receive_pointer_dataEbbPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor20scatter_copyout_dataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor20setup_omp_async_infoEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor26get_stream_in_dependenciesERjRP8coievent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor28offload_stack_memory_managerEPKviiiPb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor28register_omp_event_call_backEPK8coieventPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor31gen_var_descs_for_pointer_arrayEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor31send_noncontiguous_pointer_dataEiP7PtrDataS1_P8coieventRmjS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor34receive_noncontiguous_pointer_dataEiP9coibufferP8coieventRmjS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor7cleanupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor7computeEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptor7offloadEPKcbP7VarDescP8VarDesc2iPPKviS8_iS7_12OffloadFlags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptorC1EiP15_Offload_statusbbP20OffloadHostTimerData' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptorC2EiP15_Offload_statusbbP20OffloadHostTimerData' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17OffloadDescriptorC1EiP15_Offload_statusbbP20OffloadHostTimerData' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17OffloadDescriptorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17OffloadDescriptorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6DynLibC1EPKcPKvP10coilibrary' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6DynLibC2EPKcPKvP10coilibrary' is-defined='yes'/>
+    <elf-symbol name='_ZN6DynLibC2EPKcPKvP10coilibrary' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine10add_signalEPKvP17OffloadDescriptor' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine11find_signalEPKvb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine11init_deviceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine11set_indexesEii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine12fini_processEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine12get_pipelineEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine12get_pipelineEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine12init_processEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine13find_ptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine13get_auto_varsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine13get_thread_idEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine13init_ptr_dataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine14find_auto_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine14load_librariesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine14stream_destroyEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine14unload_libraryEPKvPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine15insert_ptr_dataEPKvmRb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine15remove_ptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine16insert_auto_dataEPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine16remove_auto_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine19destroy_thread_dataEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine19find_targetptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine21insert_targetptr_dataEPKvmRb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine21remove_targetptr_dataEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine4initEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine7add_libERK11TargetImage' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine7computeEmRKNSt7__cxx114listIP9coibufferSaIS3_EEEPKvtPvtjPK8coieventPSB_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine8fini_myoEP8coievent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine8init_myoEP8coievent' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6EngineC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6EngineC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN6EngineC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6EngineD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6EngineD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN6EngineD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream10add_streamEii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream10get_deviceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream11find_streamEmb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream12get_pipelineEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream12set_pipelineEP11coipipeline' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream14get_cpu_numberEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream16get_last_offloadEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream16set_last_offloadEP17OffloadDescriptor' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6StreamC1Eii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6StreamC2Eii' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6StreamC1Eii' is-defined='yes'/>
+    <elf-symbol name='_ZN6StreamD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6StreamD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6StreamD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN6Thread12set_pipelineEiP11coipipeline' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Thread13get_auto_varsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6ThreadC1EPl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6ThreadC2EPl' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6ThreadC1EPl' is-defined='yes'/>
+    <elf-symbol name='_ZN6ThreadD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6ThreadD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN6ThreadD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrData13add_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrData16remove_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataC1EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN7PtrDataC2EPKvm' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataC1ERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN7PtrDataC2ERKS_' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataC2EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataC2ERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7PtrDataD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN7PtrDataD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_t4lockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_t6unlockEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_tC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_tC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN7mutex_tC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_tD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN7mutex_tD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN7mutex_tD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8AutoData13add_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8AutoData16remove_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8AutoData17nullify_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8AutoDataC1EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8AutoDataC2EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN8AutoDataC1EPKvm' is-defined='yes'/>
+    <elf-symbol name='_ZN8Iterator8new_nodeEPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8IteratorC1EPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8IteratorC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN8IteratorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8IteratorC2EPN9TableListI8VarTableE4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN8IteratorC1EPN9TableListI8VarTableE4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN8IteratorC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8IteratorppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8MemRangeC1EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8MemRangeC2EPKvm' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN8MemRangeC1EPKvm' is-defined='yes'/>
+    <elf-symbol name='_ZN8MyoTableC1EP18MyoiSharedVarEntryi' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN8MyoTableC2EP18MyoiSharedVarEntryi' is-defined='yes'/>
+    <elf-symbol name='_ZN8MyoTableC2EP18MyoiSharedVarEntryi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI11MYOVarTableEC1EPNS1_4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI11MYOVarTableED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI11MYOVarTableED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI12MYOFuncTableEC2EPNS1_4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI12MYOFuncTableED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOFuncTableED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI12MYOInitTableEC2EPNS1_4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI12MYOInitTableED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI12MYOInitTableED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI8VarTableEC2EPNS1_4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI8VarTableED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI8VarTableED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableE12remove_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableE9add_tableEPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableEC1EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableEC2EPNS1_4NodeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI9FuncTableEC1EPNS1_4NodeE' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9TableListI9FuncTableED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9TableListI9FuncTableED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE10deallocateEPS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE7destroyIS4_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_IS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_JS4_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE9constructIS4_IS4_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2ERKS5_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_JRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_JS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE10deallocateEPS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE7destroyIS3_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_IRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_JRKS3_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE9constructIS3_JRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE10deallocateEPS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE7destroyIS3_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_IRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_JRKS3_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE9constructIS3_JRKS3_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_IRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_JRKS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE9constructIS2_IRKS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPcEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_JS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE10deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE7destroyIS2_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_IS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_JS2_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE9constructIS2_IS2_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE10deallocateEPS9_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE7destroyIS8_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE8allocateEmS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_IRKSt21piecewise_construct_tSt5tupleIIRS5_EESF_IIEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_JRKSt21piecewise_construct_tSt5tupleIJRS5_EESF_IJEEEEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE9constructIS8_JRKSt21piecewise_construct_tSt5tupleIJRS5_EESF_IJEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE10deallocateEPS7_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE7destroyIS6_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKS6_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKS6_EEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKSt21piecewise_construct_tSt5tupleIIRS3_EESD_IIEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKS6_EEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_JRKSt21piecewise_construct_tSt5tupleIJRS3_EESD_IJEEEEEvPT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE9constructIS6_IRKSt21piecewise_construct_tSt5tupleIIRS3_EESD_IIEEEEEvPT_DpOT0_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS8_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx14__alloc_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE17_S_select_on_copyERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11PersistDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11PersistDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11TargetImageE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI11TargetImageE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI6DynLibE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI6DynLibE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx16__aligned_membufI7PtrDataEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx16__aligned_membufI8AutoDataEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8MyoTableE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufI8MyoTableE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP9coibufferE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIP9coibufferE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIPcE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufIPcE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufImE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx16__aligned_membufImE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS6_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2IPS4_EERKNS0_IT_NS_11__enable_ifIXsrSt10__are_sameISD_SC_E7__valueES9_E6__typeEEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEC1ERKS5_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC2ES7_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN8VarTable5EntryES5_EEclINS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEES5_EEbT_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFbPKN8VarTable5EntryES5_EEclIS5_NS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEEEEbRT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC2ES7_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEC1ES7_' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFbPKN8VarTable5EntryES5_EEclINS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEESF_EEbT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops15__iter_comp_valIPFbPKN8VarTable5EntryES5_EEENS0_14_Iter_comp_valIT_EENS0_15_Iter_comp_iterIS9_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops15__val_comp_iterIPFbPKN8VarTable5EntryES5_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS9_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFbPKN8VarTable5EntryES5_EEENS0_15_Iter_comp_iterIT_EES9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxeqIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxltIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxmiIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEENS_17__normal_iteratorIT_T0_E15difference_typeERKSC_SF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxneIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESF_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxxneIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEEbRKNS_17__normal_iteratorIT_T0_EESE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10Marshaller12get_tfr_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper10RemoteCallEPKcPvi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper10SharedFreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper11ArenaCreateE16MyoOwnershipTypeiPj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper11CheckResultEPKc8MyoError' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper12ArenaAcquireEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper12ArenaReleaseEj' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper12SharedMallocEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper12is_availableEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper14GetVtableArenaEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper17SharedAlignedFreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper19SharedAlignedMallocEmm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper21HostFptrTableRegisterEPvii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper21HostVarTablePropagateEPvi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper21PostInitFuncSupportedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper22SharedAlignedArenaFreeEjPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper24SharedAlignedArenaMallocEjmm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper7AcquireEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper7LibFiniEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper7LibInitEPvS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper7ReleaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10MyoWrapper9GetResultEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK17OffloadDescriptor14get_timer_dataEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK17OffloadDescriptor19translate_coi_errorE9COIRESULT' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK6Engine11get_processEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK6Engine17get_logical_indexEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK6Engine18get_physical_indexEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK6Thread12get_pipelineEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK7PtrData13get_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK7PtrDataltERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8AutoData13get_referenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8AutoDataltERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8IteratordeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8IteratorneERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8MemRange3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8MemRange5startEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8MemRange6lengthEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8MemRange8containsERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8MemRange8overlapsERKS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorIPKN8VarTable5EntryEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11PersistDataEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11TargetImageEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI6DynLibEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI8MyoTableEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIP7PtrDataEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIP9coibufferEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIPcEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI7PtrDataEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI8AutoDataEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKmP6StreamEEE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI7PtrDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI7PtrDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8AutoDataE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8AutoDataE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8MyoTableE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufI8MyoTableE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufIP9coibufferE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufIP9coibufferE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKPKvP17OffloadDescriptorEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufISt4pairIKmP6StreamEE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufImE6_M_ptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx16__aligned_membufImE7_M_addrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEmiEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS4_SaIS4_EEEplEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10_List_nodeI8MyoTableE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10_List_nodeIP9coibufferE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10_List_nodeImE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10_Select1stISt4pairIKPKvP17OffloadDescriptorEEclERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10_Select1stISt4pairIKmP6StreamEEclERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Base_bitsetILm16EE10_M_getwordEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Base_bitsetILm2EE11_M_do_countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13_Rb_tree_nodeI7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13_Rb_tree_nodeI8AutoDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13_Rb_tree_nodeISt4pairIKmP6StreamEE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPPKN8VarTable5EntryEE4baseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13move_iteratorIPPKN8VarTable5EntryEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11PersistDataEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI11TargetImageEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI6DynLibEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorI6DynLibEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIP7PtrDataEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIP7PtrDataEneERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIPcEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14_List_iteratorIPcEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorI7PtrDataEeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorI8AutoDataEeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEeqERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEneERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEeqERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEneERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorI11PersistDataE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorI11PersistDataEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorI6DynLibE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorI8MyoTableEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorI8MyoTableEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIP9coibufferEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt20_List_const_iteratorIP9coibufferEneERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI7PtrDataEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEneERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorI8AutoDataEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEE13_M_const_castEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE8key_compEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE8key_compEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3setI7PtrDataSt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3setI8AutoDataSt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4lessI7PtrDataEclERKS0_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4lessI8AutoDataEclERKS0_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4lessIPKvEclERKS1_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4lessImEclERKmS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm1024EE15_Unchecked_testEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm1024EE4testEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm1024EE8_M_checkEmPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm1024EE9referencecvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm128EE5countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm128EE8_M_checkEmPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6bitsetILm128EE9referencecvbEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE12_M_check_lenEmPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6vectorIPKN8VarTable5EntryESaIS3_EE8max_sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE13_M_node_countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIP9coibufferSaIS2_EE13_M_node_countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx1110_List_baseIPcSaIS1_EE13_M_node_countEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx114listIP7PtrDataSaIS2_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx114listIP9coibufferSaIS2_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7__cxx114listIPcSaIS1_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeclIS0_EEPSt13_Rb_tree_nodeIS0_EOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeclIS0_EEPSt13_Rb_tree_nodeIS0_EOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8key_compEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeclIRKS4_EEPSt13_Rb_tree_nodeIS4_EOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE4sizeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_rootEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8key_compEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_IdentityI7PtrDataEclERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_IdentityI7PtrDataEclERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_IdentityI8AutoDataEclERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9_IdentityI8AutoDataEclERS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC1ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC2ERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIPKN8VarTable5EntryEEC1ERKS3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIPKN8VarTable5EntryEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIPKN8VarTable5EntryEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIPKN8VarTable5EntryEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI11PersistDataEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11PersistDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI11PersistDataEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI11TargetImageEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI11TargetImageEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI11TargetImageEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI6DynLibEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI6DynLibEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI6DynLibEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI8MyoTableEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeI8MyoTableEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeI8MyoTableEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIP7PtrDataEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIP7PtrDataEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP7PtrDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIP9coibufferEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIP9coibufferEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIP9coibufferEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIPcEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIPcEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIPcEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIPcEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt10_List_nodeIPcEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt10_List_nodeIPcEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeI7PtrDataEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeI8AutoDataEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeI8AutoDataEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EEC1ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_Head_baseILm0ERKPKvLb0EEC2ES3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKPKvLb0EEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EEC1ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_Head_baseILm0ERKmLb0EEC2ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_Head_baseILm0ERKmLb0EEC1ES1_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeI11PersistDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeI11TargetImageE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeI6DynLibE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeI8MyoTableE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIP7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIP9coibufferE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeIPcE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_nodeImE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EJRKPKvEEC2EOS4_,_ZNSt11_Tuple_implILm0EIRKPKvEEC2EOS4_,_ZNSt11_Tuple_implILm0EJRKPKvEEC1EOS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC1ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKPKvEEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC1EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC1ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EIRKmEEC2ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EIRKmEEC1ES1_,_ZNSt11_Tuple_implILm0EJRKmEEC1ES1_,_ZNSt11_Tuple_implILm0EJRKmEEC2ES1_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEE7_M_headERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EIRKPKvEE7_M_headERS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC1ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKPKvEEC2ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EJRKPKvEEC1ES3_,_ZNSt11_Tuple_implILm0EIRKPKvEEC1ES3_,_ZNSt11_Tuple_implILm0EIRKPKvEEC2ES3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEE7_M_headERS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EIRKmEE7_M_headERS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC1EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC1ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Tuple_implILm0EJRKmEEC1EOS2_,_ZNSt11_Tuple_implILm0EIRKmEEC2EOS2_,_ZNSt11_Tuple_implILm0EIRKmEEC1EOS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Tuple_implILm0EJRKmEEC2ES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__copy_moveILb0ELb0ESt26bidirectional_iterator_tagE8__copy_mISt14_List_iteratorIPcEPS4_EET0_T_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE8__copy_mISt13move_iteratorIPPKN8VarTable5EntryEES8_EET0_T_SB_SA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE10_M_getwordEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE10_S_maskbitEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE11_M_do_resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE11_S_whichbitEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EE12_S_whichwordEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm16EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE10_M_getwordEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE10_S_maskbitEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE11_M_do_resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE11_S_whichbitEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Base_bitsetILm2EE12_S_whichwordEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Destroy_auxILb1EE9__destroyIPPKN8VarTable5EntryEEEvT_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE11_M_allocateEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC1ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implC1ERKS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE12_Vector_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE13_M_deallocateEPS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EE19_M_get_Tp_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC1ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC2ERKS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EEC2ERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12_Vector_baseIPKN8VarTable5EntryESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI7PtrDataEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13_Rb_tree_nodeI7PtrDataEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeI8AutoDataEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13_Rb_tree_nodeI8AutoDataEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEE9_M_valptrEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13_Rb_tree_nodeISt4pairIKmP6StreamEEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC1ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC2ES4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEC1ES4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13move_iteratorIPPKN8VarTable5EntryEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorI11PersistDataEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorI11PersistDataEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11PersistDataEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorI11TargetImageEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI11TargetImageEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorI6DynLibEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI6DynLibEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI8MyoTableEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorI8MyoTableEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorI8MyoTableEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorIP7PtrDataEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIP7PtrDataEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIP9coibufferEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIP9coibufferEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorIP9coibufferEC1EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIPcEC1EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14_List_iteratorIPcEC2EPNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIPcEC2EPNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14_List_iteratorIPcEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC2ERS3_PS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11PersistDataEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEC1ERS3_PS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI11TargetImageEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC2ERS3_PS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI6DynLibEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC2ERS3_PS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeI8MyoTableEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC1ERS4_PS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC2ERS4_PS3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEC1ERS4_PS3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP7PtrDataEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC1ERS4_PS3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC2ERS4_PS3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEC2ERS4_PS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIP9coibufferEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC1ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC2ERS3_PS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEC2ERS3_PS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__allocated_ptrISaISt10_List_nodeIPcEEEaSEDn' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE10_S_destroyIS4_S3_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE11_S_max_sizeIKS4_EEDTcldtfp_8max_sizeEERT_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_IS3_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_JS3_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE12_S_constructIS3_JS3_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSA_DpOSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE7destroyIS3_EEvRS4_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE8allocateERS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE8max_sizeERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_IS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_JS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaIPKN8VarTable5EntryEEE9constructIS3_JS3_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11PersistDataEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI11TargetImageEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI6DynLibEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeI8MyoTableEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE10_S_destroyIS4_S2_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE7destroyIS2_EEvRS4_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE8allocateERS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP7PtrDataEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE10_S_destroyIS4_S2_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE10deallocateERS4_PS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_IRKS2_EEENSt9enable_ifIXsrSt6__and_IINS5_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE12_S_constructIS2_JRKS2_EEENSt9enable_ifIXsrSt6__and_IJNS5_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS4_PSC_DpOSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE7destroyIS2_EEvRS4_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE8allocateERS4_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_IRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIP9coibufferEEE9constructIS2_JRKS2_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS4_PT_DpOS9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_IRKS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE12_S_constructIS1_JRKS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PSB_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_IRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt10_List_nodeIPcEEE9constructIS1_JRKS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI7PtrDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE10_S_destroyIS3_S1_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE10deallocateERS3_PS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_JS1_EEENSt9enable_ifIXsrSt6__and_IJNS4_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE12_S_constructIS1_IS1_EEENSt9enable_ifIXsrSt6__and_IINS4_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS3_PS9_DpOSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE7destroyIS1_EEvRS3_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE8allocateERS3_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_JS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeI8AutoDataEEE9constructIS1_IS1_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS3_PT_DpOS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE10_S_destroyIS9_S7_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE10deallocateERS9_PS8_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEENSt9enable_ifIXsrSt6__and_IINSA_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_JRKSt21piecewise_construct_tSt5tupleIJRS4_EESF_IJEEEEENSt9enable_ifIXsrSt6__and_IJNSA_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE12_S_constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEENSt9enable_ifIXsrSt6__and_IINSA_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS9_PSM_DpOSN_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE7destroyIS7_EEvRS9_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE8allocateERS9_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_JRKSt21piecewise_construct_tSt5tupleIJRS4_EESF_IJEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEE9constructIS7_IRKSt21piecewise_construct_tSt5tupleIIRS4_EESF_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS9_PT_DpOSJ_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE10_S_destroyIS7_S5_EEDTcldtfp_7destroyfp0_EERT_PT0_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE10deallocateERS7_PS6_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKS5_EEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKS5_EEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKS5_EEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSF_DpOSG_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_JRKSt21piecewise_construct_tSt5tupleIJRS2_EESD_IJEEEEENSt9enable_ifIXsrSt6__and_IJNS8_18__construct_helperIT_JDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE12_S_constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEENSt9enable_ifIXsrSt6__and_IINS8_18__construct_helperIT_IDpT0_EE4typeEEE5valueEvE4typeERS7_PSK_DpOSL_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE37select_on_container_copy_constructionERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE7destroyIS5_EEvRS7_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE8allocateERS7_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9_S_selectIKS7_EET_RSB_z' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKS5_EEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSC_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_JRKSt21piecewise_construct_tSt5tupleIJRS2_EESD_IJEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16allocator_traitsISaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEE9constructIS5_IRKSt21piecewise_construct_tSt5tupleIIRS2_EESD_IIEEEEEDTcl12_S_constructfp_fp0_spcl7forwardIT0_Efp1_EEERS7_PT_DpOSH_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17_Rb_tree_iteratorI7PtrDataEC2EPSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI7PtrDataEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17_Rb_tree_iteratorI8AutoDataEC1EPSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorI8AutoDataEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1EPSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKPKvP17OffloadDescriptorEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC1EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC2EPSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEC2EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17_Rb_tree_iteratorISt4pairIKmP6StreamEEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18_Rb_tree_node_base10_S_maximumEPS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18_Rb_tree_node_base10_S_minimumEPS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18_Rb_tree_node_baseC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18_Rb_tree_node_baseC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18_Rb_tree_node_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI11PersistDataEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI11PersistDataEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt20_List_const_iteratorI11PersistDataEC1ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI6DynLibEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt20_List_const_iteratorI6DynLibEC2ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI6DynLibEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEC1ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEC2ERKSt14_List_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt20_List_const_iteratorI8MyoTableEC1ERKSt14_List_iteratorIS0_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorI8MyoTableEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC1EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt20_List_const_iteratorIP9coibufferEC2EPKNSt8__detail15_List_node_baseE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC1ERKSt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC2EPKNSt8__detail15_List_node_baseE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEC2ERKSt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt20_List_const_iteratorIP9coibufferEC1ERKSt14_List_iteratorIS1_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20_List_const_iteratorIP9coibufferEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIN7VarList8BufEntryEEEPT_PKS5_S8_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIPKN8VarTable5EntryEEEPT_PKS7_SA_S8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPPKN8VarTable5EntryEES7_EET0_T_SA_S9_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2ERKSt17_Rb_tree_iteratorIS0_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC1EPKSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEC2ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI7PtrDataEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2EPKSt18_Rb_tree_node_base' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2EPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC2ERKSt17_Rb_tree_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEC1ERKSt17_Rb_tree_iteratorIS0_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEppEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorI8AutoDataEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC1ERKSt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2ERKSt17_Rb_tree_iteratorIS6_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKPKvP17OffloadDescriptorEEC2ERKSt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC1ERKSt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC2ERKSt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt23_Rb_tree_const_iteratorISt4pairIKmP6StreamEEC1ERKSt17_Rb_tree_iteratorIS4_E' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE11lower_boundERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEE4findERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapIPKvP17OffloadDescriptorSt4lessIS1_ESaISt4pairIKS1_S3_EEEixERS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE11lower_boundERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE4findERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEE5eraseB5cxx11ESt17_Rb_tree_iteratorIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC1ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2ERKS8_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3mapImP6StreamSt4lessImESaISt4pairIKmS1_EEEixERS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EE6insertEOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3setI7PtrDataSt4lessIS0_ESaIS0_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EE6insertEOS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3setI8AutoDataSt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE,_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE,_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EILm0EEIEIEEERSt5tupleIIDpT_EERS8_IIDpT1_EESt12_Index_tupleIIXspT0_EEESH_IIXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIKPKvP17OffloadDescriptorEC1IJRS2_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES9_IJDpT0_EE,_ZNSt4pairIKPKvP17OffloadDescriptorEC1IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE,_ZNSt4pairIKPKvP17OffloadDescriptorEC2IIRS2_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES9_IIDpT0_EE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKPKvP17OffloadDescriptorEC2IJRS2_EJLm0EEJEJEEERSt5tupleIJDpT_EERS8_IJDpT1_EESt12_Index_tupleIJXspT0_EEESH_IJXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC1IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIKmP6StreamEC2IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE,_ZNSt4pairIKmP6StreamEC2IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE,_ZNSt4pairIKmP6StreamEC1IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IIRS0_EILm0EEIEIEEERSt5tupleIIDpT_EERS6_IIDpT1_EESt12_Index_tupleIIXspT0_EEESF_IIXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIKmP6StreamEC2IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE,_ZNSt4pairIKmP6StreamEC1IIRS0_EIEEESt21piecewise_construct_tSt5tupleIIDpT_EES7_IIDpT0_EE,_ZNSt4pairIKmP6StreamEC1IJRS0_EJEEESt21piecewise_construct_tSt5tupleIJDpT_EES7_IJDpT0_EE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIKmP6StreamEC2IJRS0_EJLm0EEJEJEEERSt5tupleIJDpT_EERS6_IJDpT1_EESt12_Index_tupleIJXspT0_EEESF_IJXspT2_EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEEOT_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEEOT_RKS1_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEERKS1_OT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_S4_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_S4_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeI7PtrDataERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeI8AutoDataERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKPKvP17OffloadDescriptorEERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRPSt13_Rb_tree_nodeIS_IKmP6StreamEERS1_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEEOT_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_Lb1EEERKS1_OT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC1IRS1_Lb1EEERKS1_OT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairIPSt18_Rb_tree_node_baseS1_EC2IRS1_S4_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC1IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC1IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC2IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt17_Rb_tree_iteratorI7PtrDataEbEC1IS2_bLb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC1IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataES2_EC2IS2_S2_Lb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC1IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC2IS2_bLb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt17_Rb_tree_iteratorI8AutoDataEbEC2IS2_bLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC1IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI7PtrDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC1IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt4pairISt23_Rb_tree_const_iteratorI8AutoDataEbEC2IRSt17_Rb_tree_iteratorIS1_ERbLb1EEEOT_OT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5tupleIIRKPKvEEC2EOS4_,_ZNSt5tupleIJRKPKvEEC1EOS4_,_ZNSt5tupleIJRKPKvEEC2EOS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC1IvLb1EEES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKPKvEEC2IvLb1EEES3_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5tupleIJRKPKvEEC2IvLb1EEES3_,_ZNSt5tupleIJRKPKvEEC1IvLb1EEES3_,_ZNSt5tupleIIRKPKvEEC1IvLb1EEES3_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKmEEC1EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5tupleIJRKmEEC1EOS2_,_ZNSt5tupleIIRKmEEC2EOS2_,_ZNSt5tupleIJRKmEEC2EOS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKmEEC1IvLb1EEES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKmEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIIRKmEEC2IvLb1EEES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC1EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC1IvLb1EEES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC2EOS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKPKvEEC2IvLb1EEES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKmEEC1EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKmEEC1IvLb1EEES1_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5tupleIJRKmEEC2IvLb1EEES1_,_ZNSt5tupleIIRKmEEC2IvLb1EEES1_,_ZNSt5tupleIIRKmEEC1IvLb1EEES1_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKmEEC2EOS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5tupleIJRKmEEC2IvLb1EEES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE14_Unchecked_setEmi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE3setEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceC1ERS0_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceC2ERS0_m' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6bitsetILm1024EE9referenceC1ERS0_m' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EE9referenceD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6bitsetILm1024EE9referenceD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm1024EEixEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE14_Unchecked_setEmi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE3setEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceC1ERS0_m' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6bitsetILm128EE9referenceC2ERS0_m' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceC2ERS0_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6bitsetILm128EE9referenceD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EE9referenceD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6bitsetILm128EEixEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIIS3_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIJS3_EEEvDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE12emplace_backIJS3_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIIS3_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIJS3_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_emplace_back_auxIIS3_EEEvDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE19_M_range_initializeI8IteratorEEvT_S8_St18input_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE22_M_initialize_dispatchI8IteratorEEvT_S8_St12__false_type' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC1I8IteratorvEET_S8_RKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC2I8IteratorvEET_S8_RKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EEC1I8IteratorvEET_S8_RKS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPKN8VarTable5EntryESaIS3_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE10_List_implD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_dec_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11PersistDataSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI11TargetImageSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_dec_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI6DynLibSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE10_List_implD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseI8MyoTableSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP7PtrDataSaIS2_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_put_nodeEPSt10_List_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIP9coibufferSaIS2_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE10_List_implD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_inc_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE11_M_set_sizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE7_M_initEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EE8_M_clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx1110_List_baseIPcSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE10push_frontERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5eraseESt20_List_const_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5eraseESt20_List_const_iteratorIS1_ES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE5frontEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE8_M_eraseESt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11PersistDataSaIS1_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11PersistDataSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9push_backEOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EE9push_backERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI11TargetImageSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI11TargetImageSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE10push_frontEOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE5eraseESt20_List_const_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE8_M_eraseESt14_List_iteratorIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI6DynLibSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI6DynLibSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIIS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE14_M_create_nodeIJS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIJS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9_M_insertIIS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EE9push_backEOS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listI8MyoTableSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listI8MyoTableSaIS1_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE10push_frontERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIIRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIJRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP7PtrDataSaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIIRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE14_M_create_nodeIJRKS2_EEEPSt10_List_nodeIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIJRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9_M_insertIIRKS2_EEEvSt14_List_iteratorIS2_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EE9push_backERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIP9coibufferSaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIP9coibufferSaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIIRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIIRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EE9push_backERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIPcSaIS1_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7__cxx114listIPcSaIS1_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7__cxx114listIPcSaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE10_M_insert_IS0_NS6_11_Alloc_nodeEEESt17_Rb_tree_iteratorIS0_EPSt18_Rb_tree_node_baseSC_OT_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11equal_rangeERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE8_M_resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_upper_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE16_M_insert_uniqueIS0_EESt4pairISt17_Rb_tree_iteratorIS0_EbEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIJS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE24_M_get_insert_unique_posERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_M_endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_eraseEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI7PtrDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE10_M_insert_IS0_NS6_11_Alloc_nodeEEESt17_Rb_tree_iteratorIS0_EPSt18_Rb_tree_node_baseSC_OT_RT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC1ERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_Alloc_nodeC2ERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11equal_rangeERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EE8_M_resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE13_Rb_tree_implIS4_Lb1EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIJS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeIIS0_EEEPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_upper_boundEPSt13_Rb_tree_nodeIS0_EPSt18_Rb_tree_node_baseRKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE16_M_insert_uniqueIS0_EESt4pairISt17_Rb_tree_iteratorIS0_EbEOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIJS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE17_M_construct_nodeIIS0_EEEvPSt13_Rb_tree_nodeIS0_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE24_M_get_insert_unique_posERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE4findERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseB5cxx11ESt23_Rb_tree_const_iteratorIS0_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE5eraseERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_M_endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_M_eraseEPSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt13_Rb_tree_nodeIS0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeI8AutoDataS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_leftmostEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE11lower_boundERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE12_M_rightmostEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE13_Rb_tree_implISA_Lb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSE_PSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS6_EPSt18_Rb_tree_node_baseRS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEEvPSt13_Rb_tree_nodeIS6_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS3_EESH_IIEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS3_EESH_IJEEEEESt17_Rb_tree_iteratorIS6_ESt23_Rb_tree_const_iteratorIS6_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE24_M_get_insert_unique_posERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS6_ERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE4findERS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_M_endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_S_keyEPKSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_valueEPKSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeIPKvSt4pairIKS1_P17OffloadDescriptorESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE10_S_maximumEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE10_S_minimumEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC1ERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC2ERSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_Alloc_nodeC2ERSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_get_nodeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_leftmostEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11_M_put_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE11lower_boundERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_drop_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_erase_auxESt23_Rb_tree_const_iteratorIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE12_M_rightmostEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_M_clone_nodeINSA_11_Alloc_nodeEEEPSt13_Rb_tree_nodeIS4_EPKSE_RT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EE13_M_initializeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2ERKS8_OSaISt13_Rb_tree_nodeIS4_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EEC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE13_Rb_tree_implIS8_Lb1EED1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIIRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKS4_EEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_create_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_insert_nodeEPSt18_Rb_tree_node_baseSC_PSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE14_M_lower_boundEPSt13_Rb_tree_nodeIS4_EPSt18_Rb_tree_node_baseRS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE15_M_destroy_nodeEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIJRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKS4_EEEvPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE17_M_construct_nodeIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEEvPSt13_Rb_tree_nodeIS4_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE21_M_get_Node_allocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIIRKSt21piecewise_construct_tSt5tupleIIRS1_EESF_IIEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS1_EESF_IJEEEEESt17_Rb_tree_iteratorIS4_ESt23_Rb_tree_const_iteratorIS4_EDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE24_M_get_insert_unique_posERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS4_ERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE3endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE4findERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE5beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE5eraseB5cxx11ESt17_Rb_tree_iteratorIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_M_endEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_S_keyEPKSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE6_S_keyEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_copyEPKSt13_Rb_tree_nodeIS4_EPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_copyINSA_11_Alloc_nodeEEEPSt13_Rb_tree_nodeIS4_EPKSE_PSt18_Rb_tree_node_baseRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_M_rootEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_S_leftEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE7_S_leftEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_beginEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_rightEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_rightEPSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_valueEPKSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EE8_S_valueEPKSt18_Rb_tree_node_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1ERKSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2ERKSA_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC1ERKSA_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmP6StreamESt10_Select1stIS4_ESt4lessImESaIS4_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4setfESt13_Ios_FmtflagsS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8iteratorISt18input_iterator_tagN8VarTable5EntryElPS2_RS2_EC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI11PersistDataEEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI11TargetImageEEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI6DynLibEEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeI8MyoTableEEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIP7PtrDataEEEPT_RS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIP9coibufferEEEPT_RS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__addressofISaISt10_List_nodeIPcEEEPT_RS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops14_Iter_comp_valIPFbS5_S5_EEEEvT_T0_SH_T1_T2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__sort_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKPKvIEERT0_RSt11_Tuple_implIXT_EIS4_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKPKvJEERT0_RSt11_Tuple_implIXT_EJS4_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt12__get_helperILm0ERKPKvIEERT0_RSt11_Tuple_implIXT_EIS4_DpT1_EE' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKmIEERT0_RSt11_Tuple_implIXT_EIS2_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__get_helperILm0ERKmJEERT0_RSt11_Tuple_implIXT_EJS2_DpT1_EE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt12__get_helperILm0ERKmIEERT0_RSt11_Tuple_implIXT_EIS2_DpT1_EE' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEEET_SB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__miter_baseISt13move_iteratorIPPKN8VarTable5EntryEEET_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__miter_baseISt14_List_iteratorIPcEET_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIPPKN8VarTable5EntryEET_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIPPKN8VarTable5EntryESt6vectorIS3_SaIS3_EEET_N9__gnu_cxx17__normal_iteratorIS8_T0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseIPPcET_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseISt13move_iteratorIPPKN8VarTable5EntryEEET_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12__niter_baseISt14_List_iteratorIPcEET_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt12setprecisioni' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__copy_move_aILb0ESt14_List_iteratorIPcEPS1_ET1_T0_S5_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__copy_move_aILb1ESt13move_iteratorIPPKN8VarTable5EntryEES5_ET1_T0_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13move_backwardIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_ET0_T_SC_SB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__copy_move_a2ILb0ESt14_List_iteratorIPcEPS1_ET1_T0_S5_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__copy_move_a2ILb1ESt13move_iteratorIPPKN8VarTable5EntryEES5_ET1_T0_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__partial_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEElNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uninitialized_copyISt13move_iteratorIPPKN8VarTable5EntryEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__unguarded_partitionIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEET_SG_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__copy_move_backward_aILb1EPPKN8VarTable5EntryES4_ET1_T0_S6_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aISt13move_iteratorIPPKN8VarTable5EntryEES5_S4_ET0_T_S8_S7_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt23__copy_move_backward_a2ILb1EN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_ET1_T0_SC_SB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops14_Val_comp_iterIPFbS5_S5_EEEEvT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt26__unguarded_insertion_sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt27__unguarded_partition_pivotIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEET_SG_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt32__make_move_if_noexcept_iteratorIPKN8VarTable5EntryESt13move_iteratorIPS3_EET0_PT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt34__uninitialized_move_if_noexcept_aIPPKN8VarTable5EntryES4_SaIS3_EET0_T_S7_S6_RT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3decRSt8ios_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EIRKPKvEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EIRKmEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt3getILm0EJRKmEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS6_' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRKPKvEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS8_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt3getILm0EIRKPKvEERNSt13tuple_elementIXT_ESt5tupleIIDpT0_EEE4typeERS8_' is-defined='yes'/>
+    <elf-symbol name='_ZSt3getILm0EJRKmEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3hexRSt8ios_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3maxImERKT_S2_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4__lgl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyISt13move_iteratorIPPKN8VarTable5EntryEES5_ET0_T_S8_S7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyISt14_List_iteratorIPcEPS1_ET0_T_S5_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIPKN8VarTable5EntryEEONSt16remove_referenceIT_E4typeEOS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIR11TargetImageEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIR6DynLibEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIR7PtrDataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIR8AutoDataEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIR8MyoTableEONSt16remove_referenceIT_E4typeEOS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPKN8VarTable5EntryEEONSt16remove_referenceIT_E4typeEOS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRSaISt13_Rb_tree_nodeISt4pairIKmP6StreamEEEEONSt16remove_referenceIT_E4typeEOSA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEEPFbS5_S5_EEvT_SD_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IISt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IJSt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt4swapIPKN8VarTable5EntryEENSt9enable_ifIXsrSt6__and_IISt21is_move_constructibleIT_ESt18is_move_assignableIS7_EEE5valueEvE4typeERS7_SE_' is-defined='yes'/>
+    <elf-symbol name='_ZSt5fixedRSt8ios_base' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt6__sortIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardI11TargetImageEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardI6DynLibEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardI7PtrDataEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardI8AutoDataEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardI8MyoTableEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIPKN8VarTable5EntryEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRK11PersistDataEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRK11TargetImageEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKP7PtrDataEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKP9coibufferEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKPKvEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKPcEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt21piecewise_construct_tEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKSt4pairIKmP6StreamEEOT_RNSt16remove_referenceIS7_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRKmEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeI7PtrDataEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeI8AutoDataEEOT_RNSt16remove_referenceIS5_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeISt4pairIKPKvP17OffloadDescriptorEEEOT_RNSt16remove_referenceISB_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt13_Rb_tree_nodeISt4pairIKmP6StreamEEEOT_RNSt16remove_referenceIS9_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRPSt18_Rb_tree_node_baseEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSt17_Rb_tree_iteratorI7PtrDataEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRSt17_Rb_tree_iteratorI8AutoDataEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIRbEOT_RNSt16remove_referenceIS1_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt17_Rb_tree_iteratorI7PtrDataEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt17_Rb_tree_iteratorI8AutoDataEEOT_RNSt16remove_referenceIS3_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIIEEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt7forwardISt5tupleIJEEEOT_RNSt16remove_referenceIS2_E4typeE' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIIRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIIRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt7forwardISt5tupleIJRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIJEEEOT_RNSt16remove_referenceIS2_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIJRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZSt7forwardISt5tupleIIRKPKvEEEOT_RNSt16remove_referenceIS6_E4typeE' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardISt5tupleIJRKmEEEOT_RNSt16remove_referenceIS4_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7forwardIbEOT_RNSt16remove_referenceIS0_E4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPPKN8VarTable5EntryEEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8_DestroyIPPKN8VarTable5EntryES3_EvT_S5_RSaIT0_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9iter_swapIN9__gnu_cxx17__normal_iteratorIPPKN8VarTable5EntryESt6vectorIS5_SaIS5_EEEESA_EvT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStaNRSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStanSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStcoSt13_Ios_Fmtflags' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStmiIPPKN8VarTable5EntryEEDTmicldtfp_4baseEcldtfp0_4baseEERKSt13move_iteratorIT_ESA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStoRRSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStorSt13_Ios_FmtflagsS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStorSt13_Ios_OpenmodeS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvS_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnwmPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_target_so_loaded' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_target_so_unloaded' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__intel_cilk_for_32_offload' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__intel_cilk_for_64_offload' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoIsAvailable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoProcessTables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoRegisterTables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoRegisterTables1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoRemoveTables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myoiRemoteIThunkCall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_offload' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_offload1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_offload2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_offload3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_offload_call_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_register_image' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_register_tables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_target_acquire' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_target_acquire1' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_target_acquire2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_target_image_is_executable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_unregister_image' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_unregister_tables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='for__continue_traceback' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='offload_proxy_task_completed_ooo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_destroy_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_destroy_nest_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_default_device' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_dynamic_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_max_threads_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_nested_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_num_devices' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_num_procs_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_get_schedule_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_init_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_init_nest_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_default_device' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_dynamic_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_nest_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_nested_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_num_threads_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_set_schedule_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_test_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_test_nest_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_unset_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='omp_unset_nest_lock_target' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZN3COI13EngineGetInfoE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3COI18PipelineSetCPUMaskE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3COI20PipelineClearCPUMaskE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN3COI21EventRegisterCallbackE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine12m_func_namesE' size='56' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Engine14c_signal_namesE' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream11all_streamsE' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream13m_stream_lockE' size='40' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN6Stream15m_streams_countE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_api_major_version' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_api_minor_version' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_is_attached' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_target_exe_name' size='512' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_target_id' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dbg_target_so_pid' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myo_func_tables' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myo_init_tables' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myo_var_tables' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__offload_myo_vtable_tables' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN3COI13EngineGetInfoE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3COI18PipelineSetCPUMaskE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3COI20PipelineClearCPUMaskE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN3COI21EventRegisterCallbackE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine12m_func_namesE' size='56' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Engine14c_signal_namesE' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream11all_streamsE' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream13m_stream_lockE' size='40' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN6Stream15m_streams_countE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_api_major_version' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_api_minor_version' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_is_attached' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_target_exe_name' size='512' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_target_id' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dbg_target_so_pid' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myo_func_tables' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myo_init_tables' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myo_var_tables' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__offload_myo_vtable_tables' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../../gcc/liboffloadmic/runtime/dv_util.cpp' language='LANG_C_plus_plus'>
 
index 9e0f04ccba55491eb025845dc5ce9830cc145f1e..d8cd85044acce389b526ab54204e6b71c8f3d6ef 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_create_sub_blob' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_get_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_get_data_writable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_get_length' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_blob_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_add_codepoints' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_add_utf16' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_add_utf32' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_add_utf8' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_allocation_successful' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_clear_contents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_deserialize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_content_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_flags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_glyph_infos' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_glyph_positions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_language' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_length' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_replacement_codepoint' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_guess_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_normalize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_pre_allocate' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_reset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_reverse' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_reverse_clusters' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_serialize_format_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_serialize_format_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_serialize_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_serialize_list_formats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_content_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_flags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_language' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_length' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_replacement_codepoint' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_segment_properties' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_buffer_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_direction_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_direction_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_create_for_tables' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_get_glyph_count' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_get_index' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_get_upem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_reference_blob' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_reference_table' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_set_glyph_count' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_set_index' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_set_upem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_face_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_feature_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_feature_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_add_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_create_sub_font' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_contour_point_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_extents_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_from_name_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_h_advance_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_h_kerning_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_h_origin_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_name_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_v_advance_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_v_kerning_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_glyph_v_origin_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_funcs_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_face' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_advance_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_contour_point' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_contour_point_for_origin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_extents' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_extents_for_origin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_from_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_h_advance' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_h_kerning' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_h_origin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_kerning_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_v_advance' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_v_kerning' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_glyph_v_origin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_parent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_ppem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_scale' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_glyph_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_glyph_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_set_funcs_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_set_ppem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_set_scale' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_font_subtract_glyph_origin_for_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ft_face_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ft_face_create_cached' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ft_font_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ft_font_get_face' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ft_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_glib_get_unicode_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_glib_script_from_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_glib_script_to_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_language_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_language_get_default' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_language_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_font_set_funcs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_collect_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_feature_get_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_get_attach_points' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_get_glyph_class' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_get_glyphs_in_class' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_get_ligature_carets' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_get_size_params' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_has_glyph_classes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_has_positioning' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_has_substitution' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_language_find_feature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_language_get_feature_indexes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_language_get_feature_tags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_language_get_required_feature' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_language_get_required_feature_index' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_lookup_collect_glyphs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_lookup_substitute_closure' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_lookup_would_substitute' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_script_find_language' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_script_get_language_tags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_table_choose_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_table_find_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_table_get_feature_tags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_table_get_lookup_count' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_layout_table_get_script_tags' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_shape_glyphs_closure' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_shape_plan_collect_lookups' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_tag_from_language' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_tag_to_language' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_tag_to_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_ot_tags_from_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_script_from_iso15924_tag' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_script_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_script_get_horizontal_direction' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_script_to_iso15924_tag' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_segment_properties_equal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_segment_properties_hash' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_add' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_add_range' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_allocation_successful' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_clear' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_del' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_del_range' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_get_max' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_get_min' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_get_population' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_has' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_intersect' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_invert' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_is_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_is_equal' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_next' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_next_range' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_set' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_subtract' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_symmetric_difference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_set_union' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_full' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_list_shapers' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_create_cached' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_execute' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_get_shaper' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_shape_plan_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_tag_from_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_tag_to_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_combining_class' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_compose' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_decompose' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_decompose_compatibility' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_eastasian_width' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_destroy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_get_default' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_get_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_get_parent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_get_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_is_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_make_immutable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_reference' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_combining_class_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_compose_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_decompose_compatibility_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_decompose_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_eastasian_width_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_general_category_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_mirroring_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_script_func' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_funcs_set_user_data' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_general_category' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_mirroring' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_unicode_script' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_version' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_version_atleast' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hb_version_string' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_create_sub_blob' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_data_writable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_blob_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_codepoints' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf16' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf32' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_add_utf8' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_allocation_successful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_clear_contents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_deserialize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_content_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_glyph_infos' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_glyph_positions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_replacement_codepoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_guess_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_normalize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_pre_allocate' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reverse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_reverse_clusters' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_format_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_format_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_serialize_list_formats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_content_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_flags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_replacement_codepoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_segment_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_buffer_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_direction_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_direction_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_create_for_tables' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_glyph_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_upem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference_blob' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_reference_table' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_glyph_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_upem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_face_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_feature_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_feature_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_add_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_create_sub_font' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_contour_point_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_extents_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_from_name_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_advance_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_kerning_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_h_origin_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_name_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_advance_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_kerning_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_glyph_v_origin_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_funcs_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_face' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_advance_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_contour_point' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_contour_point_for_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_extents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_extents_for_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_from_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_advance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_kerning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_h_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_kerning_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_advance' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_kerning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_glyph_v_origin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_parent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_ppem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_scale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_glyph_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_glyph_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_funcs_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_ppem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_scale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_font_subtract_glyph_origin_for_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ft_face_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ft_face_create_cached' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_get_face' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ft_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_glib_get_unicode_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_glib_script_from_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_glib_script_to_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_language_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_language_get_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_language_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_font_set_funcs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_collect_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_feature_get_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_attach_points' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_glyph_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_glyphs_in_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_ligature_carets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_get_size_params' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_glyph_classes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_positioning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_has_substitution' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_find_feature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_feature_indexes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_feature_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_required_feature' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_language_get_required_feature_index' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_collect_glyphs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_substitute_closure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_lookup_would_substitute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_script_find_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_script_get_language_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_choose_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_find_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_feature_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_lookup_count' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_layout_table_get_script_tags' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_shape_glyphs_closure' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_shape_plan_collect_lookups' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_from_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_to_language' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tag_to_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_ot_tags_from_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_script_from_iso15924_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_script_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_script_get_horizontal_direction' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_script_to_iso15924_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_segment_properties_equal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_segment_properties_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_add_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_allocation_successful' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_del' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_del_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_min' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_population' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_has' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_intersect' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_invert' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_is_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_is_equal' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_next_range' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_set' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_subtract' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_symmetric_difference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_set_union' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_full' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_list_shapers' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_create_cached' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_execute' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_shaper' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_shape_plan_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_tag_from_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_tag_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_combining_class' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_compose' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_decompose' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_decompose_compatibility' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_eastasian_width' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_default' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_parent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_get_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_is_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_make_immutable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_reference' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_combining_class_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_compose_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_decompose_compatibility_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_decompose_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_eastasian_width_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_general_category_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_mirroring_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_script_func' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_funcs_set_user_data' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_general_category' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_mirroring' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_unicode_script' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_version_atleast' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hb_version_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='hb-blob.cc' language='LANG_C_plus_plus'>
     <class-decl name='hb_reference_count_t' size-in-bits='32' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-object-private.hh' line='53' column='1' id='type-id-1'>
index 1ca64ddcfc002e22714dea138e2f446c28a48847..4d54c65ed7f68b75a2a54c04beeb944d2c78b6ec 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitERK14vtkPixelExtentS2_S2_S2_iiPviiS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIacEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIadEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIafEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIahEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIajEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIalEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIamEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIasEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIatEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIayEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIccEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIchEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIciEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIclEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIctEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIddEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIffEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIflEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIftEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIicEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIidEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIifEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIihEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIijEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIilEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIimEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIisEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIitEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIixEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIldEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIliEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIljEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIllEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIltEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIscEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIshEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIslEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIssEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIstEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIthEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIttEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIycEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIydEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIylEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIymEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIysEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIytEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D20TranslateInputExtentEPKiS1_Pi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2DC1Ev' type='func-type' binding='global-binding' alias='_ZN17vtkImageDataLIC2DC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD1Ev' type='func-type' binding='global-binding' alias='_ZN17vtkImageDataLIC2DD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN17vtkImageDataLIC2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetOutputEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainter9SetEnableEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterC1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkSurfaceLICPainterC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkSurfaceLICPainterD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkSurfaceLICPainterD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkStructuredGridLIC2DC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkStructuredGridLIC2DD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERSt5dequeI14vtkPixelExtentSaIS1_EES4_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkSurfaceLICCompositeC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkSurfaceLICCompositeD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' type='func-type' binding='global-binding' alias='_ZN27vtkSurfaceLICDefaultPainterC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' type='func-type' binding='global-binding' alias='_ZN27vtkSurfaceLICDefaultPainterD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC1Ev' type='func-type' binding='global-binding' alias='_ZN28vtkLineIntegralConvolution2DC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD1Ev' type='func-type' binding='global-binding' alias='_ZN28vtkLineIntegralConvolution2DD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12GetAlgorithmEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12SetAlgorithmEP17vtkImageDataLIC2D' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator23PieceToExtentThreadSafeEiiiPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator24SetInputExtentTranslatorEP19vtkExtentTranslator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC1Ev' type='func-type' binding='global-binding' alias='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD1Ev' type='func-type' binding='global-binding' alias='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorI14vtkPixelExtentE8allocateEmPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EplEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EE17_M_initialize_mapEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EpLEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE27_M_reserve_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC2ERKS2_' type='func-type' binding='weak-binding' alias='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEaSERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__adjust_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__introsort_loopISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElEvT_S5_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__unguarded_partitionISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_ET_S5_S5_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__final_insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt25__unguarded_linear_insertISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_EvT_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_ET0_T_S6_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9make_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectPKjPKd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12vtkTextureIO5WriteEPKcP16vtkTextureObjectRKSt5dequeI14vtkPixelExtentSaIS5_EEPKd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitERK14vtkPixelExtentS2_S2_S2_iiPviiS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIacEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIadEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIafEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIahEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIajEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIalEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIamEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIasEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIatEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIaxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIayEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIccEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIchEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIciEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIclEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIctEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIcyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIddEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIdyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIffEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIflEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIftEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIfyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIhyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIicEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIidEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIifEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIihEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIijEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIilEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIimEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIisEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIitEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIixEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIiyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIjyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIldEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIliEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIljEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIllEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIltEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIlyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitImyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIscEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIshEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIslEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIssEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIstEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIsyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIthEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIttEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitItyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxcEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxdEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxlEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxmEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxsEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxtEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIxyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iiPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyaEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIycEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIydEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyfEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyhEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyiEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyjEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIylEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIymEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIysEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIytEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyxEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16vtkPixelTransfer4BlitIyyEEiRK14vtkPixelExtentS3_S3_S3_iPT_iPT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D20TranslateInputExtentEPKiS1_Pi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN17vtkImageDataLIC2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN17vtkImageDataLIC2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN17vtkImageDataLIC2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter11SetStepSizeEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12ClearTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetAntiAliasEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetColorModeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetMaskColorEPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetNoiseTypeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter12SetUpdateAllEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter13PrepareOutputEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14NeedToColorLICEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14RenderInternalEP11vtkRendererP8vtkActormb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetEnhancedLICEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter14SetMapModeBiasEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15GetNoiseDataSetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetLICIntensityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15SetNoiseDataSetEP12vtkImageData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter15ValidateContextEP11vtkRenderer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16NeedToComputeLICEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskIntensityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskOnSurfaceEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaskThresholdEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMaxNoiseValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetMinNoiseValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16SetNumberOfStepsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16UpdateNoiseImageEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP10vtkDataSet' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter16VectorsToTCoordsEP13vtkDataObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter17SetNoiseGrainSizeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18CreateCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18ProcessInformationEP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter18SetEnhanceContrastEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19CanRenderSurfaceLICEP8vtkActori' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19InitializeResourcesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19NeedToGatherVectorsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNoiseTextureSizeEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter19SetNormalizeVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter20NeedToRenderGeometryEP11vtkRendererP8vtkActor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter20SetCompositeStrategyEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter21SetNoiseGeneratorSeedEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22NeedToUpdateOutputDataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetInputArrayToProcessEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter22SetNumberOfNoiseLevelsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter23SetGenerateNoiseTextureEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter24NeedToUpdateCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter24ReleaseGraphicsResourcesEP9vtkWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter26SetImpulseNoiseProbabilityEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter30SetImpulseNoiseBackgroundValueEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter34SetLowLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter35SetHighLICContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter36SetLowColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter37SetHighColorContrastEnhancementFactorEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetBoundsEP13vtkDataObjectPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9GetOutputEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainter9SetEnableEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkSurfaceLICPainterC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkSurfaceLICPainterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkSurfaceLICPainterD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D11RequestDataEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D15AllocateScalarsEP17vtkStructuredGridP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18AllocateOutputDataEP13vtkDataObjectP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D18RequestInformationEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D19RequestUpdateExtentEP14vtkInformationPP20vtkInformationVectorS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D24FillInputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D25FillOutputPortInformationEiP14vtkInformation' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkStructuredGridLIC2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkStructuredGridLIC2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkStructuredGridLIC2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite10InitializeERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EEidiiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14AddGuardPixelsERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_S6_Pf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetFudgeFactorEPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite14GetPixelBoundsEPfiR14vtkPixelExtent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERKSt5dequeI14vtkPixelExtentSaIS1_EERS3_Pf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite18MakeDecompDisjointERSt5dequeI14vtkPixelExtentSaIS1_EES4_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite26InitializeCompositeExtentsEPf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERK14vtkPixelExtentPf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICComposite9VectorMaxERKSt5dequeI14vtkPixelExtentSaIS1_EEPfRSt6vectorIfSaIfEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkSurfaceLICCompositeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkSurfaceLICCompositeD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkSurfaceLICCompositeD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter12UpdateBoundsEPd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter16ReportReferencesEP19vtkGarbageCollector' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter17BuildPainterChainEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter20SetSurfaceLICPainterEP20vtkSurfaceLICPainter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainter9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN27vtkSurfaceLICDefaultPainterC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN27vtkSurfaceLICDefaultPainterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN27vtkSurfaceLICDefaultPainterD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10GetContextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D10SetContextEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11IsSupportedEP15vtkRenderWindow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetCEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetEEShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D11SetVTShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12BuildShadersEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAHShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D12SetAAVShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLIC0ShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICIShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D13SetLICNShaderEP17vtkShaderProgram2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15GetCommunicatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D15SetComponentIdsEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetNormalizeVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D19SetTransformVectorsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D21SetNoiseTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D22SetVectorTexParametersEP16vtkTextureObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEP16vtkTextureObjectS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteEPKiP16vtkTextureObjectS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D7ExecuteERK14vtkPixelExtentRKSt5dequeIS0_SaIS0_EES7_P16vtkTextureObjectS9_S9_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2D9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN28vtkLineIntegralConvolution2DC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN28vtkLineIntegralConvolution2DD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28vtkLineIntegralConvolution2DD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12GetAlgorithmEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator12SetAlgorithmEP17vtkImageDataLIC2D' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator23PieceToExtentThreadSafeEiiiPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator24SetInputExtentTranslatorEP19vtkExtentTranslator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN33vtkImageDataLIC2DExtentTranslatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx13new_allocatorI14vtkPixelExtentE8allocateEmPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EplEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EE17_M_initialize_mapEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseI14vtkPixelExtentSaIS0_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_Deque_iteratorI14vtkPixelExtentRS0_PS0_EpLEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE13_M_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RKS0_PS5_EEEvS4_IS0_RS0_PS0_ET_SC_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE19_M_range_insert_auxISt15_Deque_iteratorIS0_RS0_PS0_EEEvS7_T_S8_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE27_M_reserve_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEC1ERKS2_' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeI14vtkPixelExtentSaIS0_EEaSERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIfSaIfEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPfS1_EEmRKf' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__push_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElS1_EvT_T0_S6_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ElEvT_S5_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__unguarded_partitionISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_ET_S5_S5_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__final_insertion_sortISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_copy_aISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_S1_ET0_T_S6_S5_RSaIT1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__uninitialized_move_aIPfS0_SaIfEET0_T_S3_S2_RT1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt25__unguarded_linear_insertISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES1_EvT_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_ES4_ET0_T_S6_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9make_heapISt15_Deque_iteratorI14vtkPixelExtentRS1_PS1_EEvT_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZTI17vtkImageDataLIC2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI20vtkSurfaceLICPainter' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI22vtkPainterCommunicator' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI22vtkStructuredGridLIC2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI22vtkSurfaceLICComposite' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI27vtkSurfaceLICDefaultPainter' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI28vtkLineIntegralConvolution2D' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI33vtkImageDataLIC2DExtentTranslator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS17vtkImageDataLIC2D' size='20' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS20vtkSurfaceLICPainter' size='23' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS22vtkPainterCommunicator' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS22vtkStructuredGridLIC2D' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS22vtkSurfaceLICComposite' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS27vtkSurfaceLICDefaultPainter' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS28vtkLineIntegralConvolution2D' size='31' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS33vtkImageDataLIC2DExtentTranslator' size='36' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV17vtkImageDataLIC2D' size='720' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV20vtkSurfaceLICPainter' size='696' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV22vtkPainterCommunicator' size='104' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV22vtkStructuredGridLIC2D' size='664' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV22vtkSurfaceLICComposite' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV27vtkSurfaceLICDefaultPainter' size='408' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV28vtkLineIntegralConvolution2D' size='600' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV33vtkImageDataLIC2DExtentTranslator' size='384' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_AAH' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_AAV' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_CE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_EE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_LIC0' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_LICI' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_LICN' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkLineIntegralConvolution2D_VT' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkStructuredGridLIC2D_fs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkSurfaceLICPainter_CE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkSurfaceLICPainter_DCpy' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkSurfaceLICPainter_GeomFs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkSurfaceLICPainter_GeomVs' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vtkSurfaceLICPainter_SC' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTI17vtkImageDataLIC2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI20vtkSurfaceLICPainter' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkPainterCommunicator' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkStructuredGridLIC2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkSurfaceLICComposite' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI27vtkSurfaceLICDefaultPainter' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI28vtkLineIntegralConvolution2D' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI33vtkImageDataLIC2DExtentTranslator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS17vtkImageDataLIC2D' size='20' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS20vtkSurfaceLICPainter' size='23' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkPainterCommunicator' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkStructuredGridLIC2D' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkSurfaceLICComposite' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS27vtkSurfaceLICDefaultPainter' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS28vtkLineIntegralConvolution2D' size='31' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS33vtkImageDataLIC2DExtentTranslator' size='36' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV17vtkImageDataLIC2D' size='720' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV20vtkSurfaceLICPainter' size='696' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkPainterCommunicator' size='104' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkStructuredGridLIC2D' size='664' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkSurfaceLICComposite' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV27vtkSurfaceLICDefaultPainter' size='408' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV28vtkLineIntegralConvolution2D' size='600' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV33vtkImageDataLIC2DExtentTranslator' size='384' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_AAH' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_AAV' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_CE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_EE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LIC0' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LICI' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_LICN' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkLineIntegralConvolution2D_VT' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkStructuredGridLIC2D_fs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_CE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_DCpy' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_GeomFs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_GeomVs' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vtkSurfaceLICPainter_SC' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkImageDataLIC2D.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index b908886279b338e63416843e0981f16a17c1dbab..52b84c9a01c456061fd4984d472012945c320a85 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='GetHeapProfile' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='HeapProfilerDump' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='HeapProfilerStart' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='HeapProfilerStop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='IsHeapProfilerRunning' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_GetAllocatedSize' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_GetEstimatedAllocatedSize' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_GetNumericProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_GetOwnership' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_GetStats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_MallocMemoryStats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_MarkThreadBusy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_MarkThreadIdle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_ReleaseFreeMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_ReleaseToSystem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_SetNumericProperty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_VerifyAllMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_VerifyArrayNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_VerifyMallocMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocExtension_VerifyNewMemory' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddPreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddPreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_AddSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_GetCallerStackTrace' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_InitAtFirstAllocation_HeapLeakChecker' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveMmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveMunmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemovePreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemovePreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_RemoveSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetDeleteHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetMmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetMremapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetMunmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetMunmapReplacement' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetNewHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetPreMmapHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetPreSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='MallocHook_SetSbrkHook' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfileHandlerGetState' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfileHandlerRegisterCallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfileHandlerRegisterThread' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfileHandlerReset' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfileHandlerUnregisterCallback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerDisable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerEnable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerFlush' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerGetCurrentState' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerRegisterThread' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerStart' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerStartWithOptions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilerStop' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ProfilingIsEnabledForAllThreads' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='TCMallocGetenvSafe' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='TCMalloc_ListAllProcessThreads' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='TCMalloc_ResumeAllProcessThreads' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13GetStackTracePPvii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14GetStackFramesPPvPiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15CyclesPerSecondv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15HasPosixThreadsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16GetenvBeforeMainPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17RawOpenForWritingPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20GetUniquePathFromEnvPKcPc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20InitSystemAllocatorsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20SleepForMillisecondsi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20TCMalloc_SystemAllocmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z21TCMalloc_SystemCommitPvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22TCMalloc_SystemReleasePvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22perftools_pthread_oncePiPFvvE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24GetStackTraceWithContextPPviiPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24tc_get_sysalloc_overrideP12SysAllocator' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25GetStackFramesWithContextPPvPiiiPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28perftools_pthread_key_createPjPFvPvE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28perftools_pthread_key_deletej' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z29perftools_pthread_getspecificj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z29perftools_pthread_setspecificjPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z31HeapLeakChecker_RunHeapCleanupsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z32HeapLeakChecker_AfterDestructorsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z33HeapLeakChecker_InternalInitStartv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z34HeapLeakChecker_BeforeConstructorsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7NumCPUsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7RAW_LOGiPKcz' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8RAW_VLOGiPKcz' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8RawClosei' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8RawWriteiPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9LogPrintfiPKcP13__va_list_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEE6InsertEPKvS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC2EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' alias='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook12UnhookedMMapEPvmiiil' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook14UnhookedMUnmapEPvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook17InvokeNewHookSlowEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook18InvokeMmapHookSlowEPKvS1_miiil' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook18InvokeSbrkHookSlowEPKvl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook20InvokeDeleteHookSlowEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook20InvokeMremapHookSlowEPKvS1_mmiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook20InvokeMunmapHookSlowEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook21InvokePreMmapHookSlowEPKvmiiil' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook21InvokePreSbrkHookSlowEl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook25InvokeMmapReplacementSlowEPKvmiiilPPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10MallocHook27InvokeMunmapReplacementSlowEPKvmPi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler10FlushTableEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler12prof_handlerEiP7siginfoPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler13EnableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler14DisableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler15GetCurrentStateEP13ProfilerState' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler4StopEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler5StartEPKcPK15ProfilerOptions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler7EnabledEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfilerC1Ev' type='func-type' binding='global-binding' alias='_ZN11CpuProfilerC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfilerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfilerD1Ev' type='func-type' binding='global-binding' alias='_ZN11CpuProfilerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfilerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11HeapCleaner15RunHeapCleanupsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11HeapCleanerC1EPFvvE' type='func-type' binding='global-binding' alias='_ZN11HeapCleanerC2EPFvvE' is-defined='yes'/>
-    <elf-symbol name='_ZN11HeapCleanerC2EPFvvE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData10FlushTableEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData12FlushEvictedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData3AddEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData4StopEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData5EvictERKNS_5EntryE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData5StartEPKcRKNS_7OptionsE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData7OptionsC1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileData7OptionsC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData7OptionsC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileDataC1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileDataC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileDataC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileDataD1Ev' type='func-type' binding='global-binding' alias='_ZN11ProfileDataD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileDataD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11SymbolTable3AddEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11SymbolTable9GetSymbolEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11SymbolTable9SymbolizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12SysAllocatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN12SysAllocatorD1Ev' type='func-type' binding='global-binding' alias='_ZN12SysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN12SysAllocatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc11DeleteArenaEPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc12DefaultArenaEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc14AllocWithArenaEmPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc4FreeEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc5AllocEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13LowLevelAlloc8NewArenaEiPNS_5ArenaE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13TCMallocGuardC1Ev' type='func-type' binding='global-binding' alias='_ZN13TCMallocGuardC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN13TCMallocGuardC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN13TCMallocGuardD1Ev' type='func-type' binding='global-binding' alias='_ZN13TCMallocGuardD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN13TCMallocGuardD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler10StartTimerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler13EnableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler13SignalHandlerEiP7siginfoPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler14DisableHandlerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler14IsTimerRunningEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler14RegisterThreadEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler16RegisterCallbackEPFviP7siginfoPvS2_ES2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler18UnregisterCallbackEP19ProfileHandlerToken' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler24IsSignalHandlerAvailableEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler8GetStateEP19ProfileHandlerState' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler8InstanceEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler9StopTimerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandlerC1Ev' type='func-type' binding='global-binding' alias='_ZN14ProfileHandlerC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandlerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandlerD1Ev' type='func-type' binding='global-binding' alias='_ZN14ProfileHandlerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandlerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14SpinLockHolderC1EP8SpinLock' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14SpinLockHolderC2EP8SpinLock' type='func-type' binding='weak-binding' alias='_ZN14SpinLockHolderC1EP8SpinLock' is-defined='yes'/>
-    <elf-symbol name='_ZN14SpinLockHolderD1Ev' type='func-type' binding='weak-binding' alias='_ZN14SpinLockHolderD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN14SpinLockHolderD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker13GlobalCheckerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker13NoGlobalLeaksEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker14DoIgnoreObjectEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker14GetAllocCallerEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker14UnIgnoreObjectEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker15DisableChecksInEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker15DoMainHeapCheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker17CancelGlobalCheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker17UseProcMapsLockedENS_12ProcMapsTaskE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker19TurnItselfOffLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker21MakeProfileNameLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveObjectsLockedEPKcS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveThreadsLockedEPviPiP13__va_list_tag' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker24BeforeConstructorsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker25DisableChecksFromToLockedEPKvS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker26DisableLibraryAllocsLockedEPKcmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker26IgnoreAllLiveObjectsLockedEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker27NoGlobalLeaksMaybeSymbolizeENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker32IgnoreNonThreadLiveObjectsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker6CreateEPKcb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakChecker8DisablerC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakChecker8DisablerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker8IsActiveEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator4FreeEPv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator8AllocateEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker9DoNoLeaksENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerC1EPKc' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerC2EPKc' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerC1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerC2EPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerD1Ev' type='func-type' binding='global-binding' alias='_ZN15HeapLeakCheckerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakCheckerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension10InitializeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension12GetOwnershipEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension13GetHeapSampleEPSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension14MarkThreadBusyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension14MarkThreadIdleEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension15ReadStackTracesEPi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension15ReleaseToSystemEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension15VerifyAllMemoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension15VerifyNewMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension16GetFreeListSizesEPSt6vectorINS_12FreeListInfoESaIS1_EE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension17MallocMemoryStatsEPiPmS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension17ReleaseFreeMemoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension18GetNumericPropertyEPKcPm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension18GetSystemAllocatorEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension18SetNumericPropertyEPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension18VerifyMallocMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension19GetHeapGrowthStacksEPSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension20GetMemoryReleaseRateEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension20SetMemoryReleaseRateEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension20VerifyArrayNewMemoryEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension25GetEstimatedAllocatedSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension25ReadHeapGrowthStackTracesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension8GetStatsEPci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension8RegisterEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtension8instanceEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtensionD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtensionD1Ev' type='func-type' binding='global-binding' alias='_ZN15MallocExtensionD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15MallocExtensionD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap10FindRegionEmPNS_6RegionE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap10LockIsHeldEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap10MremapHookEPKvS1_mmiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap10MunmapHookEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap12LogAllLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap15EndRegionLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap17BeginRegionLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap17IsRecordingLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap18DoFindRegionLockedEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap18InsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap19RecordRegionRemovalEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap20DoInsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap20RecordRegionAdditionEPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap22FindAndMarkStackRegionEmPNS_6RegionE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap24HandleSavedRegionsLockedEPFvRKNS_6RegionEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap25RestoreSavedBucketsLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap27RecordRegionRemovalInBucketEiPKPKvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap4InitEib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap4LockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap6UnlockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap8MmapHookEPKvS1_miiil' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap8SbrkHookEPKvl' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap8ShutdownEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap9GetBucketEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable10MarkAsLiveEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable10RecordFreeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable11RecordAllocEPKvmiPKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable12AddIfNonLiveEPKvPNS_10AllocValueEPNS_14AddNonLiveArgsE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable12TakeSnapshotEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable12WriteProfileEPKcRK17HeapProfileBucketP10AddressMapINS_10AllocValueEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable13AddToSnapshotEPKvPNS_10AllocValueEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable13MarkAsIgnoredEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable13UnparseBucketERK17HeapProfileBucketPciiPKcP16HeapProfileStats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable14AllocValueSizeERKNS_10AllocValueE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable15NonLiveSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable15ReleaseSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable18CleanupOldProfilesEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable18DumpBucketIteratorEPK17HeapProfileBucketPNS_10BufferArgsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable19DumpNonLiveIteratorEPKvPNS_10AllocValueERKNS_8DumpArgsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable19GetCallerStackTraceEiPPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable20MapArgsAllocIteratorEPKvPNS_10AllocValueEPFvS1_RKNS_9AllocInfoEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot11ReportLeaksEPKcS2_b' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot12ReportObjectEPKvPNS_10AllocValueEPc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot14ReportCallbackEPKvPNS_10AllocValueEPNS0_11ReportStateE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable8Snapshot23ReportIndividualObjectsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable9GetBucketEiPKPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTableC2EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' alias='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTableD1Ev' type='func-type' binding='global-binding' alias='_ZN16HeapProfileTableD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTableD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MmapSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MmapSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16MmapSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN16MmapSysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16MmapSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIterator10FormatLineEPcimmPKcmlS2_m' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIterator4InitEiPNS_6BufferEb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIterator4NextEPmS0_PPcS0_PlS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIterator7NextExtEPmS0_PPcS0_PlS2_S0_S0_S0_S0_S0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC1Ei' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC2Ei' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferEb' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC2Ei' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferE' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorD1Ev' type='func-type' binding='global-binding' alias='_ZN16ProcMapsIteratorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16ProcMapsIteratorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16SbrkSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16SbrkSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16SbrkSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN16SbrkSysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN16SbrkSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16TCMalloc_Printer6printfEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17GoogleInitializerD1Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN17GoogleInitializerD2Ev' type='func-type' binding='weak-binding' alias='_ZN17GoogleInitializerD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18DevMemSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18DevMemSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18DevMemSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN18DevMemSysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18DevMemSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19DefaultSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19DefaultSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19DefaultSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN19DefaultSysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN19DefaultSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocator10InitializeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocator13AllocInternalEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD1Ev' type='func-type' binding='weak-binding' alias='_ZN19HugetlbSysAllocatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN19HugetlbSysAllocatorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20HeapProfileEndWriterD1Ev' type='func-type' binding='weak-binding' alias='_ZN20HeapProfileEndWriterD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN20HeapProfileEndWriterD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation12GetOwnershipEPKv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation13GetHeapSampleEPSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadBusyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadIdleEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation15ReadStackTracesEPi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation15ReleaseToSystemEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation18GetNumericPropertyEPKcPm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation18GetSystemAllocatorEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation18SetNumericPropertyEPKcm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation20GetMemoryReleaseRateEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation20SetMemoryReleaseRateEd' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation25GetEstimatedAllocatedSizeEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation25ReadHeapGrowthStackTracesEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementation8GetStatsEPci' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementationD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementationD1Ev' type='func-type' binding='weak-binding' alias='_ZN22TCMallocImplementationD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22TCMallocImplementationD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD1Ev' type='func-type' binding='weak-binding' alias='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base10RawPrinter6PrintfEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base10RawPrinterC1EPci' type='func-type' binding='global-binding' alias='_ZN4base10RawPrinterC2EPci' is-defined='yes'/>
-    <elf-symbol name='_ZN4base10RawPrinterC2EPci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIterator6UpdateEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC2EPKvi' type='func-type' binding='global-binding' alias='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorppEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage4InitEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImageC1EPKv' type='func-type' binding='global-binding' alias='_ZN4base11ElfMemImageC2EPKv' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImageC2EPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11VDSOSupport4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11VDSOSupport7SetBaseEPKv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11VDSOSupportC1Ev' type='func-type' binding='global-binding' alias='_ZN4base11VDSOSupportC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11VDSOSupportC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base25SubmitSpinLockProfileDataEPKvl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal12SpinLockWaitEPViiPKNS0_22SpinLockWaitTransitionE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal12SpinLockWakeEPVib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal13SpinLockDelayEPViii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE16ExchangeSingularES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE18FixupPrivEndLockedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE3AddES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE6RemoveES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8SpinLock10SlowUnlockEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8SpinLock8SlowLockEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8SpinLock8SpinLoopElPi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc10DLL_LengthEPKNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc10DLL_RemoveEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc10DeleteSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11DLL_PrependEPNS_4SpanES1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache10BecomeIdleEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache10InitModuleEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11DeleteCacheEPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache14GetThreadStatsEPmS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache15GetSamplePeriodEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18DestroyThreadCacheEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18IncreaseCacheLimitEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache21FetchFromCentralCacheEmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEmi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22CreateCacheIfNecessaryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache24IncreaseCacheLimitLockedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache27RecomputePerThreadCacheSizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache29set_overall_thread_cache_sizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache4InitEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7CleanupEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7InitTSDEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache7NewHeapEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache8GetCacheEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache8ScavengeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc13MetaDataAllocEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11InsertRangeEPvS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11RemoveRangeEPPvS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11ShrinkCacheEib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList13OverheadBytesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14MakeCacheSpaceEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14ReleaseToSpansEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList17FetchFromOneSpansEiPPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList18ReleaseListToSpansEPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList20EvictRandomSizeClassEib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList21FetchFromOneSpansSafeEiPPvS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList4InitEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList8PopulateEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15CentralFreeList9tc_lengthEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTable23ReadStackTracesAndClearEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTable8AddTraceERKNS_10StackTraceE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC2Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc15StackTraceTableC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD2Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc15StackTraceTableD1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc16AlignmentForSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc16DumpProcSelfMapsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc16FillProcSelfMapsEPciPb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc16commandlineflags12StringToBoolEPKcb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc21metadata_system_bytesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc3LogENS_7LogModeEPKciNS_7LogItemES3_S3_S3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Logger3AddERKNS_7LogItemE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Logger6AddNumEmi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Logger6AddStrEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static14InitStaticVarsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7NewSpanEmm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler11InitStaticsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler15GetSamplePeriodEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler21PickNextSamplingPointEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler21PopulateFastLog2TableEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler4InitEj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7SizeMap11NumMoveSizeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7SizeMap4InitEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8DLL_InitEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap10AllocLargeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap10CommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap11EnsureLimitEmb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap12DecommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap12GetNextRangeEmPN4base11MallocRangeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap13MayMergeSpansEPNS_4SpanES2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap14CheckExpensiveEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetLargeSpanStatsEPNS0_14LargeSpanStatsE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetSmallSpanStatsEPNS0_14SmallSpanStatsE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17MergeIntoFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17PrependToFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap17RegisterSizeClassEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap18RemoveFromFreeListEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap19IncrementalScavengeEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap20ReleaseAtLeastNPagesEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap21ReleaseLastNormalSpanEPNS0_8SpanListE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap23SearchFreeAndLargeListsEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap3NewEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5CarveEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5CheckEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap5SplitEPNS_4SpanEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap6DeleteEPNS_4SpanE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap8GrowHeapEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeap9CheckListEPNS_4SpanEmmi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeapC1Ev' type='func-type' binding='global-binding' alias='_ZN8tcmalloc8PageHeapC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc8PageHeapC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11ProfileData15GetCurrentStateEPNS_5StateE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK15HeapLeakChecker11BytesLeakedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK15HeapLeakChecker13ObjectsLeakedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable15FindInsideAllocEPKvmPS1_Pm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable16FindAllocDetailsEPKvPNS_9AllocInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable18FillOrderedProfileEPci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable20MakeSortedBucketListEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable27IterateOrderedAllocContextsEPFvRKNS_16AllocContextInfoEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16HeapProfileTable9FindAllocEPKvPm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK16ProcMapsIterator5ValidEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage10GetSymAddrEPK9Elf64_Sym' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage12GetVerdefAuxEPK12Elf64_Verdef' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage13GetNumSymbolsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratordeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratoreqERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorneERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorptEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage21LookupSymbolByAddressEPKvPNS0_10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage3endEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage5beginEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage7GetPhdrEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynstrEj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynsymEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerdefEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerstrEj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11ElfMemImage9GetVersymEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base11VDSOSupport21LookupSymbolByAddressEPKvPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE11GetSingularEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE8TraverseEPS5_i' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK8tcmalloc15StackTraceTable6Bucket8KeyEqualEmRKNS_10StackTraceE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep10_M_destroyERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep9_S_createEmmRKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1ERKS5_' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2EPKcRKS4_' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED1Ev' type='func-type' binding='weak-binding' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorI11AllocObject13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN15MallocExtension12FreeListInfoESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPFvvESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPv13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS1_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE16_M_insert_uniqueERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE16_M_insert_uniqueERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS6_ERKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE10_M_insert_EPKSt18_Rb_tree_node_baseSM_RKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE16_M_insert_uniqueERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorISD_ERKSD_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE8_M_eraseEPSt13_Rb_tree_nodeISD_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeImE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__adjust_heapIPN16HeapProfileTable8Snapshot5EntryElS2_EvT_T0_S5_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__adjust_heapIPP17HeapProfileBucketlS1_PFbP16HeapProfileStatsS4_EEvT_T0_S8_T1_T2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__heap_selectIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_S7_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__insertion_sortIPN16HeapProfileTable8Snapshot5EntryEEvT_S4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__insertion_sortIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__introsort_loopIPN16HeapProfileTable8Snapshot5EntryElEvT_S4_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__introsort_loopIPP17HeapProfileBucketlPFbP16HeapProfileStatsS4_EEvT_S7_T0_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' alias='tc_deletearray' is-defined='yes'/>
-    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' alias='tc_deletearray_nothrow' is-defined='yes'/>
-    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' alias='tc_delete' is-defined='yes'/>
-    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znam' type='func-type' binding='global-binding' alias='tc_newarray' is-defined='yes'/>
-    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_calloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_pvalloc' type='func-type' binding='global-binding' alias='tc_pvalloc,pvalloc' is-defined='yes'/>
-    <elf-symbol name='__libc_realloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_valloc' type='func-type' binding='global-binding' alias='valloc,tc_valloc' is-defined='yes'/>
-    <elf-symbol name='__posix_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='calloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cfree' type='func-type' binding='global-binding' alias='tc_cfree,__libc_cfree' is-defined='yes'/>
-    <elf-symbol name='free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='mallinfo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='malloc' type='func-type' binding='global-binding' alias='tc_malloc,__libc_malloc' is-defined='yes'/>
-    <elf-symbol name='malloc_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='malloc_stats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='malloc_usable_size' type='func-type' binding='global-binding' alias='malloc_size,tc_malloc_size' is-defined='yes'/>
-    <elf-symbol name='mallopt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='memalign' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='mmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='mmap64' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='mremap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='munmap' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='posix_memalign' type='func-type' binding='global-binding' alias='tc_posix_memalign,__posix_memalign' is-defined='yes'/>
-    <elf-symbol name='pvalloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='realloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='sbrk' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_calloc' type='func-type' binding='global-binding' alias='calloc,__libc_calloc' is-defined='yes'/>
-    <elf-symbol name='tc_cfree' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_delete' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_delete_nothrow' type='func-type' binding='global-binding' alias='_ZdlPvRKSt9nothrow_t' is-defined='yes'/>
-    <elf-symbol name='tc_deletearray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_deletearray_nothrow' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_free' type='func-type' binding='global-binding' alias='free,__libc_free' is-defined='yes'/>
-    <elf-symbol name='tc_mallinfo' type='func-type' binding='global-binding' alias='mallinfo' is-defined='yes'/>
-    <elf-symbol name='tc_malloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_malloc_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_malloc_skip_new_handler' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_malloc_stats' type='func-type' binding='global-binding' alias='malloc_stats' is-defined='yes'/>
-    <elf-symbol name='tc_mallopt' type='func-type' binding='global-binding' alias='mallopt' is-defined='yes'/>
-    <elf-symbol name='tc_memalign' type='func-type' binding='global-binding' alias='memalign,__libc_memalign' is-defined='yes'/>
-    <elf-symbol name='tc_new' type='func-type' binding='global-binding' alias='_Znwm' is-defined='yes'/>
-    <elf-symbol name='tc_new_nothrow' type='func-type' binding='global-binding' alias='_ZnwmRKSt9nothrow_t' is-defined='yes'/>
-    <elf-symbol name='tc_newarray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_newarray_nothrow' type='func-type' binding='global-binding' alias='_ZnamRKSt9nothrow_t' is-defined='yes'/>
-    <elf-symbol name='tc_posix_memalign' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_pvalloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_realloc' type='func-type' binding='global-binding' alias='__libc_realloc,realloc' is-defined='yes'/>
-    <elf-symbol name='tc_set_new_mode' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_valloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tc_version' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='valloc' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='GetHeapProfile' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerDump' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='HeapProfilerStop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='IsHeapProfilerRunning' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetAllocatedSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetEstimatedAllocatedSize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetNumericProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetOwnership' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_GetStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MallocMemoryStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MarkThreadBusy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_MarkThreadIdle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_ReleaseFreeMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_ReleaseToSystem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_SetNumericProperty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyAllMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyArrayNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyMallocMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocExtension_VerifyNewMemory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddPreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddPreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_AddSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_GetCallerStackTrace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_InitAtFirstAllocation_HeapLeakChecker' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveMunmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemovePreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemovePreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_RemoveSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetDeleteHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMremapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMunmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetMunmapReplacement' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetNewHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetPreMmapHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetPreSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='MallocHook_SetSbrkHook' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerGetState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerRegisterCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerRegisterThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerReset' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfileHandlerUnregisterCallback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerDisable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerEnable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerFlush' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerGetCurrentState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerRegisterThread' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerStart' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerStartWithOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilerStop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ProfilingIsEnabledForAllThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='RunningOnValgrind' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='TCMallocGetenvSafe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_ListAllProcessThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_ResumeAllProcessThreads' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ValgrindSlowdown' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13GetStackTracePPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14GetStackFramesPPvPiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15CyclesPerSecondv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15HasPosixThreadsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16GetenvBeforeMainPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17RawOpenForWritingPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20GetUniquePathFromEnvPKcPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20InitSystemAllocatorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20SleepForMillisecondsi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20TCMalloc_SystemAllocmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z21TCMalloc_SystemCommitPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22TCMalloc_SystemReleasePvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22perftools_pthread_oncePiPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24GetStackTraceWithContextPPviiPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24tc_get_sysalloc_overrideP12SysAllocator' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25GetStackFramesWithContextPPvPiiiPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28perftools_pthread_key_createPjPFvPvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28perftools_pthread_key_deletej' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z29perftools_pthread_getspecificj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z29perftools_pthread_setspecificjPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z31HeapLeakChecker_RunHeapCleanupsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z32HeapLeakChecker_AfterDestructorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z33HeapLeakChecker_InternalInitStartv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z34HeapLeakChecker_BeforeConstructorsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7NumCPUsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7RAW_LOGiPKcz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8RAW_VLOGiPKcz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8RawClosei' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8RawWriteiPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9LogPrintfiPKcP13__va_list_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEE6InsertEPKvS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC2EPFPvmEPFvS3_E' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN10AddressMapIN16HeapProfileTable10AllocValueEEC1EPFPvmEPFvS3_E' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook12UnhookedMMapEPvmiiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook14UnhookedMUnmapEPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook17InvokeNewHookSlowEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook18InvokeMmapHookSlowEPKvS1_miiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook18InvokeSbrkHookSlowEPKvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeDeleteHookSlowEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeMremapHookSlowEPKvS1_mmiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook20InvokeMunmapHookSlowEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook21InvokePreMmapHookSlowEPKvmiiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook21InvokePreSbrkHookSlowEl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook25InvokeMmapReplacementSlowEPKvmiiilPPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10MallocHook27InvokeMunmapReplacementSlowEPKvmPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler10FlushTableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler12prof_handlerEiP7siginfoPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler13EnableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler14DisableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler15GetCurrentStateEP13ProfilerState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler4StopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler5StartEPKcPK15ProfilerOptions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler7EnabledEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11CpuProfilerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11CpuProfilerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfilerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleaner15RunHeapCleanupsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleanerC1EPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11HeapCleanerC2EPFvvE' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleanerC2EPFvvE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData10FlushTableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData12FlushEvictedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData3AddEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData4StopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5EvictERKNS_5EntryE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData5StartEPKcRKNS_7OptionsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData7OptionsC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileData7OptionsC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData7OptionsC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileDataC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11ProfileDataD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileDataD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable3AddEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable9GetSymbolEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11SymbolTable9SymbolizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN12SysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN12SysAllocatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc11DeleteArenaEPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc12DefaultArenaEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc14AllocWithArenaEmPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc4FreeEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc5AllocEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13LowLevelAlloc8NewArenaEiPNS_5ArenaE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN13TCMallocGuardC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN13TCMallocGuardD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN13TCMallocGuardD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler10StartTimerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13EnableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13SignalHandlerEiP7siginfoPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14DisableHandlerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14IsTimerRunningEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler14RegisterThreadEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler16RegisterCallbackEPFviP7siginfoPvS2_ES2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler18UnregisterCallbackEP19ProfileHandlerToken' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler24IsSignalHandlerAvailableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler8GetStateEP19ProfileHandlerState' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler8InstanceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler9StopTimerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN14ProfileHandlerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN14ProfileHandlerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandlerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderC1EP8SpinLock' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderC2EP8SpinLock' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14SpinLockHolderC1EP8SpinLock' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN14SpinLockHolderD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN14SpinLockHolderD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker13GlobalCheckerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker13NoGlobalLeaksEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14DoIgnoreObjectEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14GetAllocCallerEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker14UnIgnoreObjectEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker15DisableChecksInEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker15DoMainHeapCheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker17CancelGlobalCheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker17UseProcMapsLockedENS_12ProcMapsTaskE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker19TurnItselfOffLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker21MakeProfileNameLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveObjectsLockedEPKcS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker23IgnoreLiveThreadsLockedEPviPiP13__va_list_tag' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker24BeforeConstructorsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker25DisableChecksFromToLockedEPKvS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker26DisableLibraryAllocsLockedEPKcmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker26IgnoreAllLiveObjectsLockedEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker27NoGlobalLeaksMaybeSymbolizeENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker32IgnoreNonThreadLiveObjectsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker6CreateEPKcb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakChecker8DisablerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakChecker8DisablerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8DisablerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker8IsActiveEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator4FreeEPv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator8AllocateEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9DoNoLeaksENS_15ShouldSymbolizeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC1EPKc' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerC2EPKc' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC2EPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15HeapLeakCheckerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakCheckerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension10InitializeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension12GetOwnershipEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension13GetHeapSampleEPSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension14MarkThreadBusyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension14MarkThreadIdleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15ReadStackTracesEPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15ReleaseToSystemEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15VerifyAllMemoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension15VerifyNewMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension16GetFreeListSizesEPSt6vectorINS_12FreeListInfoESaIS1_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension17MallocMemoryStatsEPiPmS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension17ReleaseFreeMemoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18GetNumericPropertyEPKcPm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18GetSystemAllocatorEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18SetNumericPropertyEPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension18VerifyMallocMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension19GetHeapGrowthStacksEPSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20GetMemoryReleaseRateEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20SetMemoryReleaseRateEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension20VerifyArrayNewMemoryEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension25GetEstimatedAllocatedSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension25ReadHeapGrowthStackTracesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8GetStatsEPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8RegisterEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtension8instanceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15MallocExtensionD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15MallocExtensionD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10FindRegionEmPNS_6RegionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10LockIsHeldEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10MremapHookEPKvS1_mmiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap10MunmapHookEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap12LogAllLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap15EndRegionLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap17BeginRegionLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap17IsRecordingLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap18DoFindRegionLockedEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap18InsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap19RecordRegionRemovalEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20DoInsertRegionLockedERKNS_6RegionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20RecordRegionAdditionEPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap22FindAndMarkStackRegionEmPNS_6RegionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap24HandleSavedRegionsLockedEPFvRKNS_6RegionEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap25RestoreSavedBucketsLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap27RecordRegionRemovalInBucketEiPKPKvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap4InitEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap4LockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap6UnlockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8MmapHookEPKvS1_miiil' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8SbrkHookEPKvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8ShutdownEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap9GetBucketEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable10MarkAsLiveEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable10RecordFreeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable11RecordAllocEPKvmiPKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12AddIfNonLiveEPKvPNS_10AllocValueEPNS_14AddNonLiveArgsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12TakeSnapshotEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable12WriteProfileEPKcRK17HeapProfileBucketP10AddressMapINS_10AllocValueEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13AddToSnapshotEPKvPNS_10AllocValueEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13MarkAsIgnoredEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable13UnparseBucketERK17HeapProfileBucketPciiPKcP16HeapProfileStats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable14AllocValueSizeERKNS_10AllocValueE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable15NonLiveSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable15ReleaseSnapshotEPNS_8SnapshotE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable18CleanupOldProfilesEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable18DumpBucketIteratorEPK17HeapProfileBucketPNS_10BufferArgsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable19DumpNonLiveIteratorEPKvPNS_10AllocValueERKNS_8DumpArgsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable19GetCallerStackTraceEiPPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable20MapArgsAllocIteratorEPKvPNS_10AllocValueEPFvS1_RKNS_9AllocInfoEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot11ReportLeaksEPKcS2_b' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot12ReportObjectEPKvPNS_10AllocValueEPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot14ReportCallbackEPKvPNS_10AllocValueEPNS0_11ReportStateE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8Snapshot23ReportIndividualObjectsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable9GetBucketEiPKPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableC2EPFPvmEPFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16HeapProfileTableC1EPFPvmEPFvS0_Eb' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16HeapProfileTableD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTableD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16MmapSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16MmapSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator10FormatLineEPcimmPKcmlS2_m' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator4InitEiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator4NextEPmS0_PPcS0_PlS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIterator7NextExtEPmS0_PPcS0_PlS2_S0_S0_S0_S0_S0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1Ei' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC2Ei' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC1EiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2Ei' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorC1EiPNS_6BufferE' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorC2EiPNS_6BufferEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN16ProcMapsIteratorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16ProcMapsIteratorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN16SbrkSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN16SbrkSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16TCMalloc_Printer6printfEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17GoogleInitializerD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN17GoogleInitializerD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN17GoogleInitializerD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN18DevMemSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18DevMemSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN19DefaultSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19DefaultSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator10InitializeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator13AllocInternalEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocator5AllocEmPmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN19HugetlbSysAllocatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19HugetlbSysAllocatorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20HeapProfileEndWriterD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN20HeapProfileEndWriterD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20HeapProfileEndWriterD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation12GetOwnershipEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation13GetHeapSampleEPSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadBusyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation14MarkThreadIdleEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation15ReadStackTracesEPi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation15ReleaseToSystemEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation16GetAllocatedSizeEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18GetNumericPropertyEPKcPm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18GetSystemAllocatorEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18SetNumericPropertyEPKcm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation18SetSystemAllocatorEP12SysAllocator' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation20GetMemoryReleaseRateEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation20SetMemoryReleaseRateEd' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation25GetEstimatedAllocatedSizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation25ReadHeapGrowthStackTracesEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation6RangesEPvPFvS0_PKN4base11MallocRangeEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementation8GetStatsEPci' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN22TCMallocImplementationD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22TCMallocImplementationD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePostD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinter6PrintfEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinterC1EPci' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base10RawPrinterC2EPci' is-defined='yes'/>
+    <elf-symbol name='_ZN4base10RawPrinterC2EPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIterator6UpdateEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorC2EPKvi' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11ElfMemImage14SymbolIteratorC1EPKvi' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage14SymbolIteratorppEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage4InitEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImageC1EPKv' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11ElfMemImageC2EPKv' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImageC2EPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport7SetBaseEPKv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupportC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN4base11VDSOSupportC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupportC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base25SubmitSpinLockProfileDataEPKvl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal12SpinLockWaitEPViiPKNS0_22SpinLockWaitTransitionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal12SpinLockWakeEPVib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal13SpinLockDelayEPViii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE16ExchangeSingularES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE18FixupPrivEndLockedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE3AddES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base8internal8HookListIPFvPKvmEE6RemoveES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock10SlowUnlockEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock8SlowLockEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock8SpinLoopElPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DLL_LengthEPKNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DLL_RemoveEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc10DeleteSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11DLL_PrependEPNS_4SpanES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache10BecomeIdleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache10InitModuleEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11DeleteCacheEPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache14GetThreadStatsEPmS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache15GetSamplePeriodEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18DestroyThreadCacheEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18IncreaseCacheLimitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache21FetchFromCentralCacheEmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22CreateCacheIfNecessaryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache24IncreaseCacheLimitLockedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache27RecomputePerThreadCacheSizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache29set_overall_thread_cache_sizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache4InitEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7CleanupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7InitTSDEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache7NewHeapEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache8GetCacheEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache8ScavengeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc13MetaDataAllocEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11InsertRangeEPvS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11RemoveRangeEPPvS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList11ShrinkCacheEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList13OverheadBytesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14MakeCacheSpaceEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList14ReleaseToSpansEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList17FetchFromOneSpansEiPPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList18ReleaseListToSpansEPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList20EvictRandomSizeClassEib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList21FetchFromOneSpansSafeEiPPvS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList4InitEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList8PopulateEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15CentralFreeList9tc_lengthEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTable23ReadStackTracesAndClearEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTable8AddTraceERKNS_10StackTraceE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc15StackTraceTableC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc15StackTraceTableD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc15StackTraceTableD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16AlignmentForSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16DumpProcSelfMapsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16FillProcSelfMapsEPciPb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc16commandlineflags12StringToBoolEPKcb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc21metadata_system_bytesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc3LogENS_7LogModeEPKciNS_7LogItemES3_S3_S3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger3AddERKNS_7LogItemE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger6AddNumEmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Logger6AddStrEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14InitStaticVarsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7NewSpanEmm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler11InitStaticsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler15GetSamplePeriodEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler21PickNextSamplingPointEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler21PopulateFastLog2TableEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler4InitEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7SizeMap11NumMoveSizeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7SizeMap4InitEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8DLL_InitEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap10AllocLargeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap10CommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap11EnsureLimitEmb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap12DecommitSpanEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap12GetNextRangeEmPN4base11MallocRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap13MayMergeSpansEPNS_4SpanES2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap14CheckExpensiveEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetLargeSpanStatsEPNS0_14LargeSpanStatsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17GetSmallSpanStatsEPNS0_14SmallSpanStatsE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17MergeIntoFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17PrependToFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap17RegisterSizeClassEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap18RemoveFromFreeListEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap19IncrementalScavengeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap20ReleaseAtLeastNPagesEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap21ReleaseLastNormalSpanEPNS0_8SpanListE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap23SearchFreeAndLargeListsEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap3NewEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5CarveEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5CheckEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap5SplitEPNS_4SpanEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap6DeleteEPNS_4SpanE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap8GrowHeapEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeap9CheckListEPNS_4SpanEmmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeapC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN8tcmalloc8PageHeapC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc8PageHeapC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11ProfileData15GetCurrentStateEPNS_5StateE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK15HeapLeakChecker11BytesLeakedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK15HeapLeakChecker13ObjectsLeakedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable15FindInsideAllocEPKvmPS1_Pm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable16FindAllocDetailsEPKvPNS_9AllocInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable18FillOrderedProfileEPci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable20MakeSortedBucketListEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable27IterateOrderedAllocContextsEPFvRKNS_16AllocContextInfoEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16HeapProfileTable9FindAllocEPKvPm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK16ProcMapsIterator5ValidEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage10GetSymAddrEPK9Elf64_Sym' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage12GetVerdefAuxEPK12Elf64_Verdef' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage13GetNumSymbolsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratordeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratoreqERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorneERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage14SymbolIteratorptEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage21LookupSymbolByAddressEPKvPNS0_10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage3endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage5beginEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage7GetPhdrEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynstrEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetDynsymEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerdefEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVerstrEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11ElfMemImage9GetVersymEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base11VDSOSupport21LookupSymbolByAddressEPKvPNS_11ElfMemImage10SymbolInfoE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE11GetSingularEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK4base8internal8HookListIPFvPKvmEE8TraverseEPS5_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK8tcmalloc15StackTraceTable6Bucket8KeyEqualEmRKNS_10StackTraceE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep10_M_destroyERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep9_S_createEmmRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2EPKcRKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC1EPKcRKS4_' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEEC2ERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorI11AllocObject13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN15MallocExtension12FreeListInfoESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPFvvESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPv13STL_AllocatorIS0_N15HeapLeakChecker9AllocatorEEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S5_EERKS0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIN15MemoryRegionMap6RegionES1_St9_IdentityIS1_ENS0_9RegionCmpE13STL_AllocatorIS1_NS0_11MyAllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS1_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE16_M_insert_uniqueERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIP17HeapProfileBucketSt4pairIKS1_N16HeapProfileTable8Snapshot5EntryEESt10_Select1stIS7_ESt4lessIS1_ESaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE16_M_insert_uniqueERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS6_ERKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIPKvSt4pairIKS1_PKcESt10_Select1stIS6_ESt4lessIS1_ESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE10_M_insert_EPKSt18_Rb_tree_node_baseSM_RKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE16_M_insert_uniqueERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorISD_ERKSD_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeISbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEESt4pairIKS6_St6vectorI11AllocObjectS2_ISA_S4_EEESt10_Select1stISD_ESt4lessIS6_ES2_ISD_S4_EE8_M_eraseEPSt13_Rb_tree_nodeISD_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSF_RKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmN15HeapLeakChecker10RangeValueEESt10_Select1stIS4_ESt4lessImE13STL_AllocatorIS4_NS2_9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS4_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImSt4pairIKmmESt10_Select1stIS2_ESt4lessImE13STL_AllocatorIS2_N15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeIS2_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeImmSt9_IdentityImESt4lessImE13STL_AllocatorImN15HeapLeakChecker9AllocatorEEE8_M_eraseEPSt13_Rb_tree_nodeImE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPN16HeapProfileTable8Snapshot5EntryElS2_EvT_T0_S5_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPP17HeapProfileBucketlS1_PFbP16HeapProfileStatsS4_EEvT_T0_S8_T1_T2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__heap_selectIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_S7_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPN16HeapProfileTable8Snapshot5EntryEEvT_S4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPP17HeapProfileBucketPFbP16HeapProfileStatsS4_EEvT_S7_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPN16HeapProfileTable8Snapshot5EntryElEvT_S4_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPP17HeapProfileBucketlPFbP16HeapProfileStatsS4_EEvT_S7_T0_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdaPv' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_deletearray' is-defined='yes'/>
+    <elf-symbol name='_ZdaPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_deletearray_nothrow' is-defined='yes'/>
+    <elf-symbol name='_ZdlPv' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_delete' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znam' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_newarray' is-defined='yes'/>
+    <elf-symbol name='_ZnamRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znwm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnwmRKSt9nothrow_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_pvalloc,pvalloc' is-defined='yes'/>
+    <elf-symbol name='__libc_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_valloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='valloc,tc_valloc' is-defined='yes'/>
+    <elf-symbol name='__posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='calloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cfree' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_cfree,__libc_cfree' is-defined='yes'/>
+    <elf-symbol name='free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='mallinfo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='malloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_malloc,__libc_malloc' is-defined='yes'/>
+    <elf-symbol name='malloc_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='malloc_stats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='malloc_usable_size' type='func-type' binding='global-binding' visibility='default-visibility' alias='malloc_size,tc_malloc_size' is-defined='yes'/>
+    <elf-symbol name='mallopt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='mmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='mmap64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='mremap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='munmap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='tc_posix_memalign,__posix_memalign' is-defined='yes'/>
+    <elf-symbol name='pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sbrk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_calloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='calloc,__libc_calloc' is-defined='yes'/>
+    <elf-symbol name='tc_cfree' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_delete_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZdlPvRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_deletearray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_deletearray_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_free' type='func-type' binding='global-binding' visibility='default-visibility' alias='free,__libc_free' is-defined='yes'/>
+    <elf-symbol name='tc_mallinfo' type='func-type' binding='global-binding' visibility='default-visibility' alias='mallinfo' is-defined='yes'/>
+    <elf-symbol name='tc_malloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_skip_new_handler' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_malloc_stats' type='func-type' binding='global-binding' visibility='default-visibility' alias='malloc_stats' is-defined='yes'/>
+    <elf-symbol name='tc_mallopt' type='func-type' binding='global-binding' visibility='default-visibility' alias='mallopt' is-defined='yes'/>
+    <elf-symbol name='tc_memalign' type='func-type' binding='global-binding' visibility='default-visibility' alias='memalign,__libc_memalign' is-defined='yes'/>
+    <elf-symbol name='tc_new' type='func-type' binding='global-binding' visibility='default-visibility' alias='_Znwm' is-defined='yes'/>
+    <elf-symbol name='tc_new_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZnwmRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_newarray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_newarray_nothrow' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZnamRKSt9nothrow_t' is-defined='yes'/>
+    <elf-symbol name='tc_posix_memalign' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_pvalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_realloc' type='func-type' binding='global-binding' visibility='default-visibility' alias='__libc_realloc,realloc' is-defined='yes'/>
+    <elf-symbol name='tc_set_new_mode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_valloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tc_version' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='valloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='TCMalloc_SystemTaken' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11CpuProfiler9instance_E' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11HeapCleaner14heap_cleanups_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData13kBufferLengthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData14kAssociativityE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11ProfileData8kBucketsE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler13kMaxFrequencyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler17kDefaultFrequencyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler5once_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14ProfileHandler9instance_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator12alloc_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15HeapLeakChecker9Allocator6arena_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap11owner_lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap11unmap_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap12num_buckets_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap13bucket_table_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap13client_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap14saved_buckets_E' size='1120' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap15lock_owner_tid_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap16max_stack_depth_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap16recursion_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap19saved_buckets_keys_E' size='5120' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap20saved_buckets_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap5lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap6arena_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap8regions_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15MemoryRegionMap9map_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN16HeapProfileTable8kFileExtE' size='6' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePost6count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11ElfMemImage12kInvalidBaseE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN4base11VDSOSupport10vdso_base_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead14FLAGS_mmap_logE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead16FLAGS_nommap_logE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead18FLAGS_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_mmapE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_heap_check_reportE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_only_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_mmapE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noheap_check_reportE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead27FLAGS_cpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_heap_check_strict_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_nocpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_heap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_memfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_cleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_heap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_noheap_check_strict_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_memfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_noheap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_nocleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_noheap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_heap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_nomemfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_malloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_memfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_heap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_noheap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomalloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead38FLAGS_noheap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead39FLAGS_heap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead41FLAGS_noheap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead26FLAGS_heap_check_max_leaksE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_limitE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_startE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead28FLAGS_noheap_check_max_leaksE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead30FLAGS_heap_check_delay_secondsE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead32FLAGS_noheap_check_delay_secondsE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead41FLAGS_heap_check_pointer_source_alignmentE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead43FLAGS_noheap_check_pointer_source_alignmentE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead27FLAGS_memfs_malloc_limit_mbE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead28FLAGS_tcmalloc_heap_limit_mbE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead29FLAGS_nomemfs_malloc_limit_mbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead30FLAGS_notcmalloc_heap_limit_mbE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead31FLAGS_tcmalloc_sample_parameterE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead32FLAGS_heap_profile_time_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_heap_profile_inuse_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_notcmalloc_sample_parameterE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead34FLAGS_noheap_profile_time_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_noheap_profile_inuse_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead38FLAGS_heap_profile_allocation_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_heap_profile_deallocation_intervalE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_noheap_profile_allocation_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead42FLAGS_noheap_profile_deallocation_intervalE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead45FLAGS_notcmalloc_large_alloc_report_thresholdE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead27FLAGS_tcmalloc_release_rateE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead29FLAGS_notcmalloc_release_rateE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead16FLAGS_heap_checkE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead18FLAGS_noheap_checkE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead21FLAGS_symbolize_pprofE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_memfs_malloc_pathE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_nosymbolize_pprofE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead24FLAGS_heap_profile_pprofE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead25FLAGS_nomemfs_malloc_pathE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead26FLAGS_noheap_profile_pprofE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead31FLAGS_heap_check_dump_directoryE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead33FLAGS_noheap_check_dump_directoryE' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8SpinLock18LINKER_INITIALIZEDE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache11tsd_inited_E' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache13thread_heaps_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' size='16' type='tls-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18next_memory_steal_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache18thread_heap_count_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22per_thread_cache_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache22unclaimed_cache_space_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache26overall_thread_cache_size_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc11ThreadCache9heap_key_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc18log_message_writerE' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc21threadcache_allocatorE' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static14central_cache_E' size='107008' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static14growth_stacks_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static14pageheap_lock_E' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static15span_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static16sampled_objects_E' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static17bucket_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static21stacktrace_allocator_E' size='32' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static8sizemap_E' size='3936' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc6Static9pageheap_E' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN8tcmalloc7Sampler10log_table_E' size='8192' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep11_S_terminalE' size='1' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep20_S_empty_rep_storageE' size='32' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI12SysAllocator' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI15MallocExtension' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI16MmapSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI16SbrkSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI18DevMemSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI19DefaultSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI19HugetlbSysAllocator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI22TCMallocImplementation' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS12SysAllocator' size='15' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS15MallocExtension' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS16MmapSysAllocator' size='19' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS16SbrkSysAllocator' size='19' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS18DevMemSysAllocator' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS19DefaultSysAllocator' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS19HugetlbSysAllocator' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS22TCMallocImplementation' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV12SysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV15MallocExtension' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV16MmapSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV16SbrkSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV18DevMemSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV19DefaultSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV19HugetlbSysAllocator' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV22TCMallocImplementation' size='232' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE13kPageHeapType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE14kLargeSpanType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE16kThreadCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE17kCentralCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE18kTransferCacheType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE21kPageHeapUnmappedType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE22kLargeUnmappedSpanType' size='8' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='__free_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__malloc_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__memalign_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__realloc_hook' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='heap_leak_checker_bcad_variable' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='sys_alloc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='TCMalloc_SystemTaken' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11CpuProfiler9instance_E' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11HeapCleaner14heap_cleanups_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData13kBufferLengthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData14kAssociativityE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11ProfileData8kBucketsE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler13kMaxFrequencyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler17kDefaultFrequencyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler5once_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14ProfileHandler9instance_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator12alloc_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15HeapLeakChecker9Allocator6arena_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap11owner_lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap11unmap_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap12num_buckets_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap13bucket_table_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap13client_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap14saved_buckets_E' size='1120' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap15lock_owner_tid_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap16max_stack_depth_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap16recursion_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap19saved_buckets_keys_E' size='5120' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap20saved_buckets_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap5lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap6arena_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap8regions_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15MemoryRegionMap9map_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable14kMaxStackDepthE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN16HeapProfileTable8kFileExtE' size='6' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN28HeapLeakCheckerGlobalPrePost6count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11ElfMemImage12kInvalidBaseE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN4base11VDSOSupport10vdso_base_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead14FLAGS_mmap_logE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead16FLAGS_nommap_logE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead18FLAGS_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_mmapE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead22FLAGS_malloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_heap_check_reportE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead23FLAGS_only_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_mmapE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead24FLAGS_nomalloc_skip_sbrkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noheap_check_reportE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead27FLAGS_cpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_heap_check_strict_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead29FLAGS_nocpu_profiler_unittestE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_heap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead30FLAGS_memfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_cleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_heap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead31FLAGS_noheap_check_strict_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_memfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_noheap_check_run_under_gdbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_nocleanup_old_heap_profilesE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead33FLAGS_noheap_check_identify_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_heap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead34FLAGS_nomemfs_malloc_abort_on_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_heap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_malloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead35FLAGS_memfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_heap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead36FLAGS_noheap_check_after_destructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_global_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_noheap_check_ignore_thread_liveE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomalloc_disable_memory_releaseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead38FLAGS_noheap_check_before_constructorsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead39FLAGS_heap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead41FLAGS_noheap_check_test_pointer_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead26FLAGS_heap_check_max_leaksE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_limitE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead27FLAGS_nomalloc_devmem_startE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead28FLAGS_noheap_check_max_leaksE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead30FLAGS_heap_check_delay_secondsE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead32FLAGS_noheap_check_delay_secondsE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead41FLAGS_heap_check_pointer_source_alignmentE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead43FLAGS_noheap_check_pointer_source_alignmentE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead27FLAGS_memfs_malloc_limit_mbE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead28FLAGS_tcmalloc_heap_limit_mbE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead29FLAGS_nomemfs_malloc_limit_mbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead30FLAGS_notcmalloc_heap_limit_mbE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead31FLAGS_tcmalloc_sample_parameterE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead32FLAGS_heap_profile_time_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_heap_profile_inuse_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead33FLAGS_notcmalloc_sample_parameterE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead34FLAGS_noheap_profile_time_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_noheap_profile_inuse_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead38FLAGS_heap_profile_allocation_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_heap_profile_deallocation_intervalE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead40FLAGS_noheap_profile_allocation_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead42FLAGS_noheap_profile_deallocation_intervalE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead45FLAGS_notcmalloc_large_alloc_report_thresholdE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead27FLAGS_tcmalloc_release_rateE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead29FLAGS_notcmalloc_release_rateE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead16FLAGS_heap_checkE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead18FLAGS_noheap_checkE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead21FLAGS_symbolize_pprofE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_memfs_malloc_pathE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead23FLAGS_nosymbolize_pprofE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead24FLAGS_heap_profile_pprofE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead25FLAGS_nomemfs_malloc_pathE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead26FLAGS_noheap_profile_pprofE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead31FLAGS_heap_check_dump_directoryE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead33FLAGS_noheap_check_dump_directoryE' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8SpinLock18LINKER_INITIALIZEDE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache11tsd_inited_E' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache13thread_heaps_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache17threadlocal_data_E' size='16' type='tls-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18next_memory_steal_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache18thread_heap_count_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22per_thread_cache_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache22unclaimed_cache_space_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache26overall_thread_cache_size_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc11ThreadCache9heap_key_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc18log_message_writerE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc21threadcache_allocatorE' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14central_cache_E' size='107008' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14growth_stacks_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static14pageheap_lock_E' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static15span_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static16sampled_objects_E' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static17bucket_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static21stacktrace_allocator_E' size='32' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static8sizemap_E' size='3936' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc6Static9pageheap_E' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN8tcmalloc7Sampler10log_table_E' size='8192' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep11_S_terminalE' size='1' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIcSt11char_traitsIcE13STL_AllocatorIcN15HeapLeakChecker9AllocatorEEE4_Rep20_S_empty_rep_storageE' size='32' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI12SysAllocator' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI15MallocExtension' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI16MmapSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI16SbrkSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI18DevMemSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI19DefaultSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI19HugetlbSysAllocator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI22TCMallocImplementation' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS12SysAllocator' size='15' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS15MallocExtension' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS16MmapSysAllocator' size='19' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS16SbrkSysAllocator' size='19' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS18DevMemSysAllocator' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS19DefaultSysAllocator' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS19HugetlbSysAllocator' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS22TCMallocImplementation' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV12SysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV15MallocExtension' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV16MmapSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV16SbrkSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV18DevMemSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV19DefaultSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV19HugetlbSysAllocator' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV22TCMallocImplementation' size='232' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE13kPageHeapType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE14kLargeSpanType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE16kThreadCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE17kCentralCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE18kTransferCacheType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE21kPageHeapUnmappedType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN22TCMallocImplementation16GetFreeListSizesEPSt6vectorIN15MallocExtension12FreeListInfoESaIS2_EEE22kLargeUnmappedSpanType' size='8' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__free_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__malloc_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__memalign_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__realloc_hook' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='heap_leak_checker_bcad_variable' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='sys_alloc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/tcmalloc.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 20850e5180106be0924f9582872c51710c7fe53c..b3703264e2aeba1dca7d9fa00f3b9e37c8039b5d 100644 (file)
@@ -6,14 +6,14 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN10first_typeC1Ev' type='func-type' binding='global-binding' alias='_ZN10first_typeC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10first_typeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11second_typeC1Ev' type='func-type' binding='global-binding' alias='_ZN11second_typeC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11second_typeC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN1a16build_first_typeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN1a17build_second_typeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10first_typeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10first_typeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10first_typeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11second_typeC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11second_typeC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11second_typeC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN1a16build_first_typeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN1a17build_second_typeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test2-0.cc' language='LANG_C_plus_plus'>
     <class-decl name='first_type' size-in-bits='64' is-struct='yes' visibility='default' filepath='/home/dodji/git/libabigail/dwarf/tests/data/test-read-dwarf/test2.h' line='4' column='1' id='type-id-1'>
index a838cf880677f2216a824d9fb991355d693b2e54..2f8b3a50be5a2ab3430b3347ea97a9339f7e46ea 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN10vtkProcess13GetControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10vtkProcess13SetControllerEP25vtkMultiProcessController' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10vtkProcess14GetReturnValueEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10vtkProcess9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10vtkProcessC1Ev' type='func-type' binding='global-binding' alias='_ZN10vtkProcessC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN10vtkProcessC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup10InitializeEiiiiP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup11restoreRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup12getLocalRankEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup16MakeSortedUniqueEPiiPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup16setGatherPatternEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup17MergeSortedUniqueEPiiS0_iPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup19AllReduceUniqueListEPiiPS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup19computeFanInTargetsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPcS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup6GatherEPxS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup8moveRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPcii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPdii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPfii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPdS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPdS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPfS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9ReduceSumEPiS0_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroup9setUpRootEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroupC1Ev' type='func-type' binding='global-binding' alias='_ZN11vtkSubGroupC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroupC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroupD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroupD1Ev' type='func-type' binding='global-binding' alias='_ZN11vtkSubGroupD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN11vtkSubGroupD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_PxS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator10SetUseCopyEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiPNS_9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator17MarshalDataObjectEP13vtkDataObjectP12vtkCharArray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEP13vtkDataObjectiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxiPNS_9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator18GetParentProcessorEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator19ComputeGlobalBoundsEiiP14vtkBoundingBoxPiS2_iii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator19UnMarshalDataObjectEP12vtkCharArrayP13vtkDataObject' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator21GetLeftChildProcessorEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator23SendElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator26ReceiveElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator4SendEP12vtkDataArrayii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator4SendEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator4SendERK21vtkMultiProcessStreamii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator6GatherEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_PNS_9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_PxS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP12vtkDataArrayii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP13vtkDataObjectii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7ReceiveER21vtkMultiProcessStreamii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator7ScatterEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9AllGatherEP12vtkDataArrayS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_PNS_9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP12vtkDataArrayi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP13vtkDataObjecti' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9BroadcastER21vtkMultiProcessStreami' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicatorC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicatorC2Ev' type='func-type' binding='global-binding' alias='_ZN15vtkCommunicatorC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkCommunicatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP25vtkMultiProcessController' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup12AddProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup13FindProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup15RemoveProcessIdEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup17GetLocalProcessIdEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup19RemoveAllProcessIdsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup4CopyEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroupC1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkProcessGroupC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroupC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroupD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroupD1Ev' type='func-type' binding='global-binding' alias='_ZN15vtkProcessGroupD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN15vtkProcessGroupD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController18SetRMICommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController19SingleMethodExecuteEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController21MultipleMethodExecuteEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN18vtkDummyControllerC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkDummyControllerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkDummyControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicator8SetGroupEP15vtkProcessGroup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkSubCommunicatorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN18vtkSubCommunicatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN18vtkSubCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController10InitializeEPiPPPc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController15CloseConnectionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController15SetCommunicatorEP21vtkSocketCommunicator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController17WaitForConnectionEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController25CreateCompliantControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController26GetSwapBytesInReceivedDataEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController9ConnectToEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN19vtkSocketControllerC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN19vtkSocketControllerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkDummyCommunicatorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN20vtkDummyCommunicatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN20vtkDummyCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream10GetRawDataERPhRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataEPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataERKSt6vectorIhSaIhEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPcRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPdRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPfRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPhRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPiRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPjRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPxRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPyRj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPcj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPdj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPfj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPhj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPij' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPjj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPxj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPyj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream4SizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream5EmptyEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStream5ResetEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC1ERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC2ERKS_' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamC1ERKS_' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamD1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkMultiProcessStreamD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamaSERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEx' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERf' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERx' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator10GetVersionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator10SendTaggedEPKviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator12FixByteOrderEPvii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator12GetLogStreamEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator12SetLogStreamEPSo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator13ReceiveTaggedEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator14GetIsConnectedEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator15CloseConnectionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEP15vtkServerSocketm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator19ClientSideHandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator19ServerSideHandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator20HasBufferredMessagesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator20ReceivePartialTaggedEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator21CheckForErrorInternalEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator24ReceivedTaggedFromBufferEPviiiPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator7BarrierEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9ConnectToEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9HandshakeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogTaggedEPKcPKviiiS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicator9SetSocketEP15vtkClientSocket' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicatorC1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkSocketCommunicatorC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicatorC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD1Ev' type='func-type' binding='global-binding' alias='_ZN21vtkSocketCommunicatorD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN21vtkSocketCommunicatorD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer11DeserializeER21vtkMultiProcessStreamP12vtkFieldData' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer15SerializeTuplesEP9vtkIdListP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer17SerializeMetaDataEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeDataArrayEP12vtkDataArrayR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeSubExtentEPiS0_P12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer19DeserializeMetaDataER21vtkMultiProcessStreamP14vtkStringArrayP11vtkIntArrayS5_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer20DeserializeDataArrayER21vtkMultiProcessStreamRP12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer20ExtractSubExtentDataEPiS0_P12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer21ExtractSelectedTuplesEP9vtkIdListP12vtkDataArray' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer3NewEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializer9SerializeEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializerC1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkFieldDataSerializerC2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializerC2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD1Ev' type='func-type' binding='global-binding' alias='_ZN22vtkFieldDataSerializerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN22vtkFieldDataSerializerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController10ProcessRMIEiPvii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController10TriggerRMIEiPvii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController14AddRMICallbackEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController14RemoveFirstRMIEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController15SetSingleMethodEPFvPS_PvES1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController16TriggerBreakRMIsEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController17GetLocalProcessIdEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController17GetMultipleMethodEiRPFvPS_PvERS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController17RemoveRMICallbackEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController17SetMultipleMethodEiPFvPS_PvES1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController18GetLocalControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController18TriggerRMIInternalEiPviib' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController19CreateSubControllerEP15vtkProcessGroup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController19GetGlobalControllerEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController19PartitionControllerEii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController19SetGlobalControllerEPS_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController20GetNumberOfProcessesEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController20SetNumberOfProcessesEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController21RemoveAllRMICallbacksEi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController22SetSingleProcessObjectEP10vtkProcess' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController23TriggerRMIOnAllChildrenEPvii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController6AddRMIEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessController9RemoveRMIEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessControllerC1Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessControllerC2Ev' type='func-type' binding='global-binding' alias='_ZN25vtkMultiProcessControllerC1Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD0Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD1Ev' type='func-type' binding='global-binding' alias='_ZN25vtkMultiProcessControllerD2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZN25vtkMultiProcessControllerD2Ev' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11vtkSubGroup13PrintSubGroupEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK21vtkMultiProcessStream10GetRawDataERSt6vectorIhSaIhEE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED1Ev' type='func-type' binding='weak-binding' alias='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11_Deque_baseIhSaIhEE17_M_initialize_mapEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxESt15_Deque_iteratorIhRhPhEmRKh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5dequeIhSaIhEEaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS7_S9_EEmRKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIcSaIcEE15_M_range_insertIPcEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIhSaIhEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPhS1_EERKh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIhSaIhEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPhS1_EEmRKh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIiSaIiEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPiS1_EEmRKi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6vectorIiSaIiEE6resizeEmi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE10_M_insert_EPKSt18_Rb_tree_node_baseSH_RKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE16_M_insert_uniqueERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13__adjust_heapIPiliEvT_T0_S2_T1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__insertion_sortIPiEvT_S1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__introsort_loopIPilEvT_S1_T0_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4copyIPKxPxET0_T_S4_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4fillIhEvRKSt15_Deque_iteratorIT_RS1_PS1_ES6_RKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess13GetControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess13SetControllerEP25vtkMultiProcessController' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess14GetReturnValueEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcess9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcessC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10vtkProcessC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN10vtkProcessC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup10InitializeEiiiiP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup11restoreRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup12getLocalRankEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup16MakeSortedUniqueEPiiPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup16setGatherPatternEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup17MergeSortedUniqueEPiiS0_iPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup19AllReduceUniqueListEPiiPS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup19computeFanInTargetsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPcS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup6GatherEPxS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup8moveRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPcii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPdii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPfii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9BroadcastEPxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPdS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMaxEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPdS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPfS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceMinEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9ReduceSumEPiS0_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroup9setUpRootEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11vtkSubGroupC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN11vtkSubGroupD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN11vtkSubGroupD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10AllGatherVEP12vtkDataArrayS1_PxS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator10SetUseCopyEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiPNS_9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17MarshalDataObjectEP13vtkDataObjectP12vtkCharArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEP13vtkDataObjectiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ReceiveDataObjectEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxiPNS_9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator18GetParentProcessorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19ComputeGlobalBoundsEiiP14vtkBoundingBoxPiS2_iii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator19UnMarshalDataObjectEP12vtkCharArrayP13vtkDataObject' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator21GetLeftChildProcessorEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator23SendElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator26ReceiveElementalDataObjectEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendEP12vtkDataArrayii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator4SendERK21vtkMultiProcessStreamii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6GatherEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_PNS_9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator6ReduceEP12vtkDataArrayS1_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_PxS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7GatherVEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP12vtkDataArrayii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveEP13vtkDataObjectii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ReceiveER21vtkMultiProcessStreamii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7ScatterEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllGatherEP12vtkDataArrayS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_PNS_9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9AllReduceEP12vtkDataArrayS1_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP12vtkDataArrayi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastEP13vtkDataObjecti' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9BroadcastER21vtkMultiProcessStreami' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkCommunicatorC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup10InitializeEP25vtkMultiProcessController' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup12AddProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup13FindProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup15RemoveProcessIdEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup17GetLocalProcessIdEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup19RemoveAllProcessIdsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup4CopyEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroup9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkProcessGroupC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN15vtkProcessGroupD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkProcessGroupD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController15SetCommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController18SetRMICommunicatorEP15vtkCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController19SingleMethodExecuteEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController21MultipleMethodExecuteEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkDummyControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkDummyControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkDummyControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator8SetGroupEP15vtkProcessGroup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkSubCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN18vtkSubCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN18vtkSubCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController10InitializeEPiPPPc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController15CloseConnectionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController15SetCommunicatorEP21vtkSocketCommunicator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController17WaitForConnectionEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController25CreateCompliantControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController26GetSwapBytesInReceivedDataEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController9ConnectToEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN19vtkSocketControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN19vtkSocketControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkDummyCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN20vtkDummyCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN20vtkDummyCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10GetRawDataERPhRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataEPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream10SetRawDataERKSt6vectorIhSaIhEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPcRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPdRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPfRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPhRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPiRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPjRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPxRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream3PopERPyRj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPdj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPfj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPij' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPxj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4PushEPyj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream4SizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream5EmptyEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStream5ResetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC1ERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC2ERKS_' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamC1ERKS_' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkMultiProcessStreamD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamaSERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamlsEy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkMultiProcessStreamrsERy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator10GetVersionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator10SendTaggedEPKviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12FixByteOrderEPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12GetLogStreamEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator12SetLogStreamEPSo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator13ReceiveTaggedEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator13SendVoidArrayEPKvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator14GetIsConnectedEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15CloseConnectionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15GatherVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator15ReduceVoidArrayEPKvPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16GatherVVoidArrayEPKvPvxPxS3_ii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16ReceiveVoidArrayEPvxiii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator16ScatterVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17ScatterVVoidArrayEPKvPvPxS3_xii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEP15vtkServerSocketm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator17WaitForConnectionEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllGatherVoidArrayEPKvPvxi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxiPN15vtkCommunicator9OperationE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18AllReduceVoidArrayEPKvPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator18BroadcastVoidArrayEPvxii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19AllGatherVVoidArrayEPKvPvxPxS3_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19ClientSideHandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator19ServerSideHandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20HasBufferredMessagesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20ReceivePartialTaggedEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator21CheckForErrorInternalEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator24ReceivedTaggedFromBufferEPviiiPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator7BarrierEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9ConnectToEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9HandshakeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogTaggedEPKcPKviiiS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9LogToFileEPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicator9SetSocketEP15vtkClientSocket' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkSocketCommunicatorC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN21vtkSocketCommunicatorD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN21vtkSocketCommunicatorD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer11DeserializeER21vtkMultiProcessStreamP12vtkFieldData' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer15SerializeTuplesEP9vtkIdListP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer17SerializeMetaDataEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeDataArrayEP12vtkDataArrayR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer18SerializeSubExtentEPiS0_P12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer19DeserializeMetaDataER21vtkMultiProcessStreamP14vtkStringArrayP11vtkIntArrayS5_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer20DeserializeDataArrayER21vtkMultiProcessStreamRP12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer20ExtractSubExtentDataEPiS0_P12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer21ExtractSelectedTuplesEP9vtkIdListP12vtkDataArray' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer3NewEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializer9SerializeEP12vtkFieldDataR21vtkMultiProcessStream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkFieldDataSerializerC2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN22vtkFieldDataSerializerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN22vtkFieldDataSerializerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController10ProcessRMIEiPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController10TriggerRMIEiPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController11ProcessRMIsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController14AddRMICallbackEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController14RemoveFirstRMIEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController15SetSingleMethodEPFvPS_PvES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController16TriggerBreakRMIsEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17GetLocalProcessIdEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17GetMultipleMethodEiRPFvPS_PvERS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17RemoveRMICallbackEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController17SetMultipleMethodEiPFvPS_PvES1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController18GetLocalControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController18TriggerRMIInternalEiPviib' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19CreateSubControllerEP15vtkProcessGroup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19GetGlobalControllerEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19PartitionControllerEii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController19SetGlobalControllerEPS_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController20GetNumberOfProcessesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController20SetNumberOfProcessesEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController21RemoveAllRMICallbacksEi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController22SetSingleProcessObjectEP10vtkProcess' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController23TriggerRMIOnAllChildrenEPvii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController6AddRMIEPFvPvS0_iiES0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController9PrintSelfERSo9vtkIndent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessController9RemoveRMIEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerC1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerC2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN25vtkMultiProcessControllerC1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD0Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN25vtkMultiProcessControllerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN25vtkMultiProcessControllerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11vtkSubGroup13PrintSubGroupEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK21vtkMultiProcessStream10GetRawDataERSt6vectorIhSaIhEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED1Ev' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10_List_baseISt6vectorIcSaIcEESaIS2_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11_Deque_baseIhSaIhEE17_M_initialize_mapEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxESt15_Deque_iteratorIhRhPhEmRKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE13_M_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE17_M_reallocate_mapEmb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRKhPS4_EEEvS3_IhRhPhET_SB_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE19_M_range_insert_auxISt15_Deque_iteratorIhRhPhEEEvS6_T_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE22_M_reserve_map_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE23_M_new_elements_at_backEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE24_M_new_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEE28_M_reserve_elements_at_frontEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5dequeIhSaIhEEaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPFvP25vtkMultiProcessControllerPvEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS7_S9_EEmRKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiPvEEESaIS7_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPSB_SD_EEmRKSB_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIPN6vtksys15_Hashtable_nodeISt4pairIKiS_IN25vtkMultiProcessController11vtkInternal14vtkRMICallbackESaIS6_EEEEESaISB_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIcSaIcEE15_M_range_insertIPcEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIhSaIhEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPhS1_EERKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIhSaIhEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPhS1_EEmRKh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIiSaIiEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPiS1_EEmRKi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIiSaIiEE6resizeEmi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE10_M_insert_EPKSt18_Rb_tree_node_baseSH_RKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE16_M_insert_uniqueERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8_Rb_treeIiSt4pairIKiSt4listISt6vectorIcSaIcEESaIS5_EEESt10_Select1stIS8_ESt4lessIiESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIPiliEvT_T0_S2_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIPiEvT_S1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIPilEvT_S1_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4copyIPKxPxET0_T_S4_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4fillIhEvRKSt15_Deque_iteratorIT_RS1_PS1_ES6_RKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZN15vtkCommunicator7UseCopyE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN19vtkSocketController11InitializedE' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI10vtkProcess' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI11vtkSubGroup' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI15vtkCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI15vtkProcessGroup' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI18vtkDummyController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI18vtkSubCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI19vtkSocketController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI20vtkDummyCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI22vtkFieldDataSerializer' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTI25vtkMultiProcessController' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN15vtkCommunicator9OperationE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS10vtkProcess' size='13' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS11vtkSubGroup' size='14' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS15vtkCommunicator' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS15vtkProcessGroup' size='18' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS18vtkDummyController' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS18vtkSubCommunicator' size='21' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS19vtkSocketController' size='22' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS20vtkDummyCommunicator' size='23' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS22vtkFieldDataSerializer' size='25' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTS25vtkMultiProcessController' size='28' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN15vtkCommunicator9OperationE' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV10vtkProcess' size='184' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV11vtkSubGroup' size='176' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV15vtkCommunicator' size='328' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV15vtkProcessGroup' size='192' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV18vtkDummyController' size='368' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV18vtkSubCommunicator' size='344' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV19vtkSocketController' size='376' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV20vtkDummyCommunicator' size='328' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV21vtkSocketCommunicator' size='480' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV22vtkFieldDataSerializer' size='176' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTV25vtkMultiProcessController' size='344' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN15vtkCommunicator9OperationE' size='48' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN15vtkCommunicator7UseCopyE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN19vtkSocketController11InitializedE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI10vtkProcess' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI11vtkSubGroup' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI15vtkCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI15vtkProcessGroup' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI18vtkDummyController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI18vtkSubCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI19vtkSocketController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI20vtkDummyCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI22vtkFieldDataSerializer' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTI25vtkMultiProcessController' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN15vtkCommunicator9OperationE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS10vtkProcess' size='13' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS11vtkSubGroup' size='14' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS15vtkCommunicator' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS15vtkProcessGroup' size='18' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS18vtkDummyController' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS18vtkSubCommunicator' size='21' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS19vtkSocketController' size='22' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS20vtkDummyCommunicator' size='23' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS21vtkSocketCommunicator' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS22vtkFieldDataSerializer' size='25' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTS25vtkMultiProcessController' size='28' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN15vtkCommunicator9OperationE' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV10vtkProcess' size='184' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV11vtkSubGroup' size='176' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV15vtkCommunicator' size='328' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV15vtkProcessGroup' size='192' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV18vtkDummyController' size='368' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV18vtkSubCommunicator' size='344' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV19vtkSocketController' size='376' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV20vtkDummyCommunicator' size='328' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV21vtkSocketCommunicator' size='480' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV22vtkFieldDataSerializer' size='176' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTV25vtkMultiProcessController' size='344' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN15vtkCommunicator9OperationE' size='48' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkCommunicator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index d9ae8d3dc111baa123bad3c58b61adb35ba04ee7..9d4f1db3cc0c9beb1333d00e3447212739424215 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z10cpp_assertP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10cpp_defineP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10cpp_finishP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10cpp_lookupP10cpp_readerPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10deps_writePK4depsP8_IO_FILEj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10get_spacesPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10ht_destroyP2ht' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10seen_errorv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z10warning_atjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11cpp_definedP10cpp_readerPKhi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11cpp_destroyP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11cpp_get_dirP9_cpp_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11cpp_warningP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11fancy_abortPKciS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11fatal_errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11file_existsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11linemap_addP9line_maps9lc_reasonjPKcj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z11pp_verbatimP17pretty_print_infoPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12collect_waitPKcP7pex_obj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_get_depsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_get_fileP10cpp_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_get_pathP9_cpp_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_get_prevP10cpp_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_includedP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_set_langP10cpp_reader6c_lang' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12cpp_unassertP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12deps_add_depP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12deps_restoreP4depsP8_IO_FILEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12linemap_dumpP8_IO_FILEP9line_mapsjb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12linemap_initP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z12pp_constructP17pretty_print_infoPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13cpp_get_tokenP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13cpp_token_lenPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13cpp_type2name9cpp_ttypeh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13cpp_undef_allP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13pp_base_flushP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z13trim_filenamePKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14cpp_get_bufferP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14cpp_init_iconvP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14cpp_pedwarningP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14cpp_peek_tokenP10cpp_readeri' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14deps_add_vpathP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14internal_errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14linemap_lookupP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14pp_base_formatP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14pp_base_indentP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14pp_base_stringP17pretty_print_infoPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z14vec_stack_freePv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15collect_executePKcPPcS0_S0_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_avoid_pasteP10cpp_readerPK9cpp_tokenS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_change_fileP10cpp_reader9lc_reasonPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_get_optionsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_output_lineP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_push_bufferP10cpp_readerPKhmi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_spell_tokenP10cpp_readerPK9cpp_tokenPhb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15cpp_sys_macro_pP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15deps_add_targetP4depsPKci' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15emit_diagnostic12diagnostic_tjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15expand_locationj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15line_table_dumpP8_IO_FILEP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z15pp_base_newlineP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_get_commentsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_output_tokenPK9cpp_tokenP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_post_optionsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_push_includeP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_quote_stringPhPKhj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16cpp_set_line_mapP10cpp_readerP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16gcc_init_libintlv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16ggc_realloc_statPvm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16vec_gc_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z16vec_gc_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_create_reader6c_langP2htP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_get_callbacksP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_init_builtinsP10cpp_readeri' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_scan_nooutputP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_set_callbacksP10cpp_readerP13cpp_callbacks' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17cpp_token_as_textP10cpp_readerPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17diagnostic_finishP18diagnostic_context' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17gcc_gettext_widthPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17notice_translatedPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z17pp_base_characterP17pretty_print_infoi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18_cpp_backup_tokensP10cpp_readerj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18cpp_read_main_fileP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18cpp_userdef_char_p9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18cpp_warning_syshdrP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18deps_phony_targetsPK4depsP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18ht_dump_statisticsP2ht' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18linemap_line_startP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18pp_base_set_prefixP17pretty_print_infoPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18vec_heap_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z18vec_heap_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_classify_numberP10cpp_readerPK9cpp_tokenPPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_error_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_included_beforeP10cpp_readerPKcj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_num_sign_extend7cpp_numm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_register_pragmaP10cpp_readerPKcS2_PFvS0_Eb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19cpp_token_val_indexP9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19diagnostic_set_infoP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19file_name_as_prefixPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19ht_lookup_with_hashP2htPKhmj16ht_lookup_option' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19pp_base_append_textP17pretty_print_infoPKcS2_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19pp_base_emit_prefixP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19pp_base_maybe_spaceP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19vec_stack_o_reservePvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z19vec_stack_p_reservePvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20cpp_clear_file_cacheP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20cpp_define_formattedP10cpp_readerPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20cpp_interpret_stringP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20cpp_macro_definitionP10cpp_readerP12cpp_hashnode' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20cpp_userdef_string_p9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20ggc_alloc_typed_stat13gt_types_enumm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20ggc_round_alloc_sizem' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z20identifier_to_localePKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z21cpp_interpret_integerP10cpp_readerPK9cpp_tokenj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z21cpp_warning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z21diagnostic_initializeP18diagnostic_contexti' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z21linemap_dump_locationP9line_mapsjP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22cpp_forall_identifiersP10cpp_readerPFiS0_P12cpp_hashnodePvES3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22cpp_get_userdef_suffixPK9cpp_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22cpp_make_system_headerP10cpp_readerii' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22cpp_set_include_chainsP10cpp_readerP7cpp_dirS2_i' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22linemap_get_statisticsP9line_mapsP13linemap_stats' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22pp_base_destroy_prefixP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22pp_base_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22vec_gc_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z22vec_gc_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23cpp_interpret_charconstP10cpp_readerPK9cpp_tokenPjPi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23deps_add_default_targetP4depsPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23diagnostic_build_prefixP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23dump_vec_loc_statisticsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23ggc_internal_alloc_statm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23linemap_expand_locationP9line_mapsPK8line_mapj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23pp_base_format_verbatimP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z23pp_write_text_to_streamP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24cpp_host_to_exec_charsetP10cpp_readerj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24cpp_interpret_int_suffixPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24cpp_pedwarning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24linemap_resolve_locationP9line_mapsj24location_resolution_kindPPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24vec_heap_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z24vec_heap_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25cpp_force_token_locationsP10cpp_readerPj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25cpp_init_special_builtinsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25cpp_output_line_to_stringP10cpp_readerPKh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25cpp_userdef_char_add_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25linemap_compare_locationsP9line_mapsjj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25pp_base_clear_output_areaP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25vec_stack_o_reserve_exactPvimm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z25vec_stack_p_reserve_exactPvi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26cpp_interpret_float_suffixPKcm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26default_diagnostic_starterP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26diagnostic_pop_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26dump_line_table_statisticsv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26linemap_check_files_exitedP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z26linemap_map_get_macro_namePK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z27cpp_get_token_with_locationP10cpp_readerPj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z27cpp_userdef_string_add_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z27diagnostic_push_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z27linemap_position_for_columnP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z27vec_stack_p_reserve_exact_1iPv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28cpp_register_deferred_pragmaP10cpp_readerPKcS2_jbb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28cpp_userdef_char_remove_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28cpp_warning_with_line_syshdrP10cpp_readerijjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28default_diagnostic_finalizerP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z28diagnostic_report_diagnosticP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z29linemap_macro_expansion_map_pPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z29pp_base_last_position_in_textPK17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z29pp_base_output_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z30cpp_userdef_string_remove_type9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z30diagnostic_classify_diagnosticP18diagnostic_contexti12diagnostic_tj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z30diagnostic_set_info_translatedP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z31ggc_internal_cleared_alloc_statm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z31linemap_unwind_toward_expansionP9line_mapsjPPK8line_map' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z31pp_base_set_line_maximum_lengthP17pretty_print_infoi' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z32cpp_interpret_string_notranslateP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z32cpp_stop_forcing_token_locationsP10cpp_reader' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z32diagnostic_report_current_moduleP18diagnostic_contextj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z35linemap_location_in_system_header_pP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z36linemap_position_for_line_and_columnP8line_mapjj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z37linemap_tracks_macro_expansion_locs_pP9line_maps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z39linemap_location_from_macro_expansion_pP9line_mapsj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z42pp_base_remaining_character_count_for_lineP17pretty_print_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z5errorPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z5sorryPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z6informjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z6noticePKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7error_njiPKcS0_z' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7fnoticeP8_IO_FILEPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7ht_loadP2htPP13ht_identifierjjb' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7pedwarnjiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z7warningiPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8cpp_ideqPK9cpp_tokenPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8do_tlinkPPcS0_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8error_atjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8ggc_freePv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8ht_purgeP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8inform_njiPKcS0_z' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z8verbatimPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9cpp_errnoP10cpp_readeriPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9cpp_errorP10cpp_readeriPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9cpp_undefP10cpp_readerPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9deps_freeP4deps' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9deps_initv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9deps_saveP4depsP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9dump_filePKcP8_IO_FILE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9ht_createj' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9ht_forallP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9ht_lookupP2htPKhm16ht_lookup_option' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9permerrorjPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z9pp_printfP17pretty_print_infoPKcz' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_aligned_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_append_extend_buff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_arguments_ok' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_backup_tokens_direct' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_builtin_macro_text' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_clean_line' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_cleanup_files' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_compare_file_date' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_convert_input' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_copy_replacement_text' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_create_definition' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_create_trad_definition' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_default_encoding' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_define_builtin' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_destroy_hashtable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_destroy_iconv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_do__Pragma' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_do_file_change' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_equiv_tokens' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_expand_op_stack' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_expansions_different_trad' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_extend_buff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_fake_include' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_find_failed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_find_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_free_buff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_free_definition' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_get_buff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_get_file_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_get_file_stat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_get_fresh_line' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_handle_directive' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_directives' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_files' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_hashtable' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_internal_pragmas' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_lexer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_init_tokenrun' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_interpret_identifier' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_lex_direct' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_lex_identifier' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_lex_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_mark_file_once_only' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_overlay_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_parse_expr' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_pop_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_pop_context' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_pop_file_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_process_line_notes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_push_text_context' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_push_token_context' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_read_file_entries' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_read_logical_line_trad' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_release_buff' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_remaining_tokens_num_in_context' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_remove_overlay' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_replacement_text_len' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_report_missing_guards' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_restore_pragma_names' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_save_file_entries' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_save_parameter' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_save_pragma_names' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_scan_out_logical_line' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_skip_block_comment' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_stack_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_stack_include' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_temp_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_test_assertion' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_unaligned_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_valid_ucn' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_warn_if_unused_macro' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_start' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ada_demangle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='atexit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='buildargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='choose_tmpdir' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='concat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='concat_copy' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='concat_copy2' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='concat_length' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='countargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_fill_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_fill_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_fill_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_init_info' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_mangled_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_name_to_style' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_opname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_print' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_print_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_set_style' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_type' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_mangle_opname' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cpp_named_operator2name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dos_lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='dupargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='expandargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='fdopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='filename_cmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='filename_ncmp' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='fopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='freeargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='freopen_unlocked' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='getpwd' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='hex_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_clear_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_collisions' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_create_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_create_alloc_ex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_create_typed_alloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_delete' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_elements' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_empty' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_find' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_find_slot' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_find_slot_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_find_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_hash_string' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_remove_elt' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_remove_elt_with_hash' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_set_functions_ex' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_size' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_traverse' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_traverse_noresize' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_try_create' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='iterative_hash' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='java_demangle_v3' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='java_demangle_v3_callback' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='linemap_add_macro_token' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='linemap_enter_macro' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='linemap_get_expansion_filename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='linemap_get_expansion_line' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='main' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='make_temp_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_buffer' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_finish_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_init_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_process_block' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_process_bytes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_read_ctx' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='md5_stream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_free' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_get_status' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_get_times' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_init_common' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_input_file' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_input_pipe' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_read_err' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_read_output' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_run' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pex_run_in_environment' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='reconcat' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='set_cplus_marker_for_demangling' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='unix_lbasename' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='unlink_if_ordinary' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='unlock_std_streams' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='unlock_stream' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='writeargv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xcalloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xexit' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xmalloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xmalloc_failed' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xmalloc_set_program_name' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xmemdup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xrealloc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xstrdup' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='xstrerror' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_assertP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_defineP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_finishP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10cpp_lookupP10cpp_readerPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10deps_writePK4depsP8_IO_FILEj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10get_spacesPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10ht_destroyP2ht' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10seen_errorv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z10warning_atjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_definedP10cpp_readerPKhi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_destroyP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_get_dirP9_cpp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11cpp_warningP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11fancy_abortPKciS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11fatal_errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11file_existsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11linemap_addP9line_maps9lc_reasonjPKcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z11pp_verbatimP17pretty_print_infoPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12collect_waitPKcP7pex_obj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_depsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_fileP10cpp_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_pathP9_cpp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_get_prevP10cpp_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_includedP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_set_langP10cpp_reader6c_lang' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12cpp_unassertP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12deps_add_depP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12deps_restoreP4depsP8_IO_FILEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12linemap_dumpP8_IO_FILEP9line_mapsjb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12linemap_initP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z12pp_constructP17pretty_print_infoPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_get_tokenP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_token_lenPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_type2name9cpp_ttypeh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13cpp_undef_allP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13pp_base_flushP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z13trim_filenamePKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_get_bufferP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_init_iconvP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_pedwarningP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14cpp_peek_tokenP10cpp_readeri' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14deps_add_vpathP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14internal_errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14linemap_lookupP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_formatP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_indentP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14pp_base_stringP17pretty_print_infoPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z14vec_stack_freePv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15collect_executePKcPPcS0_S0_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_avoid_pasteP10cpp_readerPK9cpp_tokenS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_change_fileP10cpp_reader9lc_reasonPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_get_optionsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_output_lineP10cpp_readerP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_push_bufferP10cpp_readerPKhmi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_spell_tokenP10cpp_readerPK9cpp_tokenPhb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15cpp_sys_macro_pP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15deps_add_targetP4depsPKci' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15emit_diagnostic12diagnostic_tjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15expand_locationj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15line_table_dumpP8_IO_FILEP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z15pp_base_newlineP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_get_commentsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_output_tokenPK9cpp_tokenP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_post_optionsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_push_includeP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_quote_stringPhPKhj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16cpp_set_line_mapP10cpp_readerP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16gcc_init_libintlv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16ggc_realloc_statPvm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16vec_gc_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z16vec_gc_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_create_reader6c_langP2htP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_get_callbacksP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_init_builtinsP10cpp_readeri' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_scan_nooutputP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_set_callbacksP10cpp_readerP13cpp_callbacks' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17cpp_token_as_textP10cpp_readerPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17diagnostic_finishP18diagnostic_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17gcc_gettext_widthPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17notice_translatedPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z17pp_base_characterP17pretty_print_infoi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18_cpp_backup_tokensP10cpp_readerj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_read_main_fileP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_userdef_char_p9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18cpp_warning_syshdrP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18deps_phony_targetsPK4depsP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18ht_dump_statisticsP2ht' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18linemap_line_startP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18pp_base_set_prefixP17pretty_print_infoPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18vec_heap_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z18vec_heap_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_classify_numberP10cpp_readerPK9cpp_tokenPPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_error_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_included_beforeP10cpp_readerPKcj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_num_sign_extend7cpp_numm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_register_pragmaP10cpp_readerPKcS2_PFvS0_Eb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19cpp_token_val_indexP9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19diagnostic_set_infoP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19file_name_as_prefixPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19ht_lookup_with_hashP2htPKhmj16ht_lookup_option' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_append_textP17pretty_print_infoPKcS2_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_emit_prefixP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19pp_base_maybe_spaceP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19vec_stack_o_reservePvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z19vec_stack_p_reservePvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_clear_file_cacheP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_define_formattedP10cpp_readerPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_interpret_stringP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_macro_definitionP10cpp_readerP12cpp_hashnode' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20cpp_userdef_string_p9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20ggc_alloc_typed_stat13gt_types_enumm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20ggc_round_alloc_sizem' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z20identifier_to_localePKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z21cpp_interpret_integerP10cpp_readerPK9cpp_tokenj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z21cpp_warning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z21diagnostic_initializeP18diagnostic_contexti' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z21linemap_dump_locationP9line_mapsjP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_forall_identifiersP10cpp_readerPFiS0_P12cpp_hashnodePvES3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_get_userdef_suffixPK9cpp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_make_system_headerP10cpp_readerii' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22cpp_set_include_chainsP10cpp_readerP7cpp_dirS2_i' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22linemap_get_statisticsP9line_mapsP13linemap_stats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22pp_base_destroy_prefixP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22pp_base_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22vec_gc_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z22vec_gc_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23cpp_interpret_charconstP10cpp_readerPK9cpp_tokenPjPi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23deps_add_default_targetP4depsPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23diagnostic_build_prefixP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23dump_vec_loc_statisticsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23ggc_internal_alloc_statm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23linemap_expand_locationP9line_mapsPK8line_mapj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23pp_base_format_verbatimP17pretty_print_infoP9text_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z23pp_write_text_to_streamP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_host_to_exec_charsetP10cpp_readerj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_interpret_int_suffixPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24cpp_pedwarning_with_lineP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24linemap_resolve_locationP9line_mapsj24location_resolution_kindPPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24vec_heap_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z24vec_heap_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_force_token_locationsP10cpp_readerPj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_init_special_builtinsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_output_line_to_stringP10cpp_readerPKh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25cpp_userdef_char_add_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25linemap_compare_locationsP9line_mapsjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25pp_base_clear_output_areaP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25vec_stack_o_reserve_exactPvimm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z25vec_stack_p_reserve_exactPvi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26cpp_interpret_float_suffixPKcm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26default_diagnostic_starterP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26diagnostic_pop_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26dump_line_table_statisticsv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26linemap_check_files_exitedP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z26linemap_map_get_macro_namePK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z27cpp_get_token_with_locationP10cpp_readerPj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z27cpp_userdef_string_add_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z27diagnostic_push_diagnosticsP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z27linemap_position_for_columnP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z27vec_stack_p_reserve_exact_1iPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_register_deferred_pragmaP10cpp_readerPKcS2_jbb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_userdef_char_remove_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28cpp_warning_with_line_syshdrP10cpp_readerijjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28default_diagnostic_finalizerP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z28diagnostic_report_diagnosticP18diagnostic_contextP15diagnostic_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z29linemap_macro_expansion_map_pPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z29pp_base_last_position_in_textPK17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z29pp_base_output_formatted_textP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z30cpp_userdef_string_remove_type9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z30diagnostic_classify_diagnosticP18diagnostic_contexti12diagnostic_tj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z30diagnostic_set_info_translatedP15diagnostic_infoPKcPA1_13__va_list_tagj12diagnostic_t' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z31ggc_internal_cleared_alloc_statm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z31linemap_unwind_toward_expansionP9line_mapsjPPK8line_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z31pp_base_set_line_maximum_lengthP17pretty_print_infoi' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z32cpp_interpret_string_notranslateP10cpp_readerPK10cpp_stringmPS1_9cpp_ttype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z32cpp_stop_forcing_token_locationsP10cpp_reader' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z32diagnostic_report_current_moduleP18diagnostic_contextj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z35linemap_location_in_system_header_pP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z36linemap_position_for_line_and_columnP8line_mapjj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z37linemap_tracks_macro_expansion_locs_pP9line_maps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z39linemap_location_from_macro_expansion_pP9line_mapsj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z42pp_base_remaining_character_count_for_lineP17pretty_print_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z5errorPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z5sorryPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z6informjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z6noticePKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7error_njiPKcS0_z' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7fnoticeP8_IO_FILEPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7ht_loadP2htPP13ht_identifierjjb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7pedwarnjiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z7warningiPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8cpp_ideqPK9cpp_tokenPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8do_tlinkPPcS0_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8error_atjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8ggc_freePv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8ht_purgeP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8inform_njiPKcS0_z' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z8verbatimPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_errnoP10cpp_readeriPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_errorP10cpp_readeriPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9cpp_undefP10cpp_readerPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_freeP4deps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_initv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9deps_saveP4depsP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9dump_filePKcP8_IO_FILE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_createj' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_forallP2htPFiP10cpp_readerP13ht_identifierPKvES6_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9ht_lookupP2htPKhm16ht_lookup_option' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9permerrorjPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z9pp_printfP17pretty_print_infoPKcz' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__libc_csu_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_aligned_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_append_extend_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_arguments_ok' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_backup_tokens_direct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_builtin_macro_text' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_clean_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_cleanup_files' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_compare_file_date' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_convert_input' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_copy_replacement_text' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_create_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_create_trad_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_default_encoding' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_define_builtin' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_destroy_hashtable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_destroy_iconv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_do__Pragma' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_do_file_change' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_equiv_tokens' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_expand_op_stack' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_expansions_different_trad' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_extend_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_fake_include' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_find_failed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_find_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_free_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_free_definition' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_file_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_file_stat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_get_fresh_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_handle_directive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_directives' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_files' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_hashtable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_internal_pragmas' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_lexer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_init_tokenrun' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_interpret_identifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_direct' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_identifier' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_lex_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_mark_file_once_only' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_overlay_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_parse_expr' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_pop_file_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_process_line_notes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_push_text_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_push_token_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_read_file_entries' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_read_logical_line_trad' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_release_buff' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_remaining_tokens_num_in_context' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_remove_overlay' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_replacement_text_len' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_report_missing_guards' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_restore_pragma_names' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_file_entries' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_parameter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_save_pragma_names' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_scan_out_logical_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_skip_block_comment' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_stack_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_stack_include' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_temp_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_test_assertion' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_unaligned_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_valid_ucn' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_warn_if_unused_macro' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ada_demangle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='buildargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='choose_tmpdir' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='concat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='concat_copy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='concat_copy2' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='concat_length' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='countargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_extended_operator' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_fill_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_init_info' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_mangled_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_name_to_style' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_opname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_print_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_set_style' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_type' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_mangle_opname' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cpp_named_operator2name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dos_lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='dupargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='expandargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fdopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='filename_cmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='filename_ncmp' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='freeargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='freopen_unlocked' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='getpwd' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='hex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_clear_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_collisions' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_create_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_create_alloc_ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_create_typed_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_delete' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_elements' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_empty' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_find_slot' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_find_slot_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_find_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_hash_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_remove_elt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_remove_elt_with_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_set_functions_ex' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_size' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_traverse' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_traverse_noresize' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_try_create' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='is_gnu_v3_mangled_ctor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='is_gnu_v3_mangled_dtor' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='iterative_hash' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='java_demangle_v3' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='java_demangle_v3_callback' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='linemap_add_macro_token' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='linemap_enter_macro' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='linemap_get_expansion_filename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='linemap_get_expansion_line' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='main' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='make_temp_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_buffer' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_finish_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_init_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_process_block' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_process_bytes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_read_ctx' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='md5_stream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_get_status' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_get_times' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_init_common' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_input_file' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_input_pipe' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_read_err' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_read_output' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_run' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pex_run_in_environment' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='reconcat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='set_cplus_marker_for_demangling' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='unix_lbasename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='unlink_if_ordinary' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='unlock_std_streams' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='unlock_stream' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='writeargv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xcalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xexit' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xmalloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xmalloc_failed' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xmalloc_set_program_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xmemdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xrealloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xstrdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='xstrerror' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__DTOR_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__TMC_END__' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__environ@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_cpp_trigraph_map' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_hex_value' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_sch_istable' size='512' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_sch_tolower' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_sch_toupper' size='256' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_xexit_cleanup' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='bug_report_url' size='31' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='c_file_name' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='close_quote' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='cplus_demangle_operators' size='1392' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='current_demangling_style' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='debug' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='do_collecting' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='environ@@GLIBC_2.2.5' size='8' type='object-type' binding='weak-binding' alias='__environ@@GLIBC_2.2.5' is-defined='yes'/>
-    <elf-symbol name='file_stack' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='file_stack_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='funcs' size='72' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='global_dc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='helpflag' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_eq_pointer' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='htab_hash_pointer' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='identifier_to_locale_alloc' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='identifier_to_locale_free' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='input_location' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='lderrout' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='ldout' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='libiberty_concat_ptr' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='libiberty_demanglers' size='264' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='line_table' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='locale_encoding' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='locale_utf8' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='no_demangle' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='num_expanded_macros_counter' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='num_macro_tokens_counter' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='open_quote' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='pkgversion_string' size='7' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='progname' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='rtl_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='stderr@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='stdin@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='stdout@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='symbol_stack' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='symbol_stack_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='temporary_firstobj' size='8' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='temporary_obstack' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tree_id_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='tree_zone' size='4' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='version_string' size='6' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='vflag' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_IO_stdin_used' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__environ@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_cpp_trigraph_map' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_hex_value' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_sch_istable' size='512' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_sch_tolower' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_sch_toupper' size='256' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_xexit_cleanup' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='bug_report_url' size='31' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='c_file_name' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='close_quote' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_builtin_types' size='1056' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='cplus_demangle_operators' size='1392' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='current_demangling_style' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='debug' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='do_collecting' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='environ@@GLIBC_2.2.5' size='8' type='object-type' binding='weak-binding' visibility='default-visibility' alias='__environ@@GLIBC_2.2.5' is-defined='yes'/>
+    <elf-symbol name='file_stack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='file_stack_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='funcs' size='72' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='global_dc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='helpflag' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_eq_pointer' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='htab_hash_pointer' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='identifier_to_locale_alloc' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='identifier_to_locale_free' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='input_location' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='lderrout' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='ldout' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='libiberty_concat_ptr' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='libiberty_demanglers' size='264' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='line_table' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='locale_encoding' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='locale_utf8' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='no_demangle' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='num_expanded_macros_counter' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='num_macro_tokens_counter' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='open_quote' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='pkgversion_string' size='7' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='progname' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='rtl_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='stderr@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='stdin@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='stdout@@GLIBC_2.2.5' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='symbol_stack' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='symbol_stack_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='temporary_firstobj' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='temporary_obstack' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tree_id_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='tree_zone' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='version_string' size='6' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='vflag' size='1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/collect2.c' language='LANG_C_plus_plus'>
 
index d350ea4c90a042380a98268b839ccdeb2fd1de55..7c02ab028086acd6f1de219ef0db04b150ca3c66 100644 (file)
     <dependency name='libgcc_s.so.1'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv116__enum_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv117__array_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv117__class_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv117__pbase_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv119__pointer_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv120__function_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv120__si_class_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv121__vmi_class_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv123__fundamental_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
-    <elf-symbol name='_ZN10__gnu_norm15_List_node_base4hookEPS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__gnu_norm15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__gnu_norm15_List_node_base6unhookEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__gnu_norm15_List_node_base7reverseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN10__gnu_norm15_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base12_M_get_mutexEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base16_M_attach_singleEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base16_M_detach_singleEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base9_M_detachEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base12_M_get_mutexEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base13_M_detach_allEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base18_M_detach_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base22_M_revalidate_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base7_M_swapERS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_detachEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug30_Safe_unordered_container_base13_M_detach_allEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN11__gnu_debug30_Safe_unordered_container_base7_M_swapERS0_' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14__gnu_parallel9_Settings3getEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN14__gnu_parallel9_Settings3setERS0_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx12__atomic_addEPVii' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base12_M_get_mutexEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18__exchange_and_addEPVii' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4fileEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE5uflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC1EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC2EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC1EP8_IO_FILE@@GLIBCXX_3.4.10' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4fileEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE5uflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC1EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC2EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC1EP8_IO_FILE@@GLIBCXX_3.4.10' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx27__verbose_terminate_handlerEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE10_M_destroyEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE13_M_initializeEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEmm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE10_M_destroyEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEPFvPvE' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_get_thread_idEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEmm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE21_M_destroy_thread_keyEPv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx9free_list6_M_getEm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx9free_list8_M_clearEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__pbase_type_info10__do_catchEPKSt9type_infoPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv119__pointer_type_info14__is_pointer_pEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv119__pointer_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv120__function_type_info15__is_function_pEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK10__cxxabiv129__pointer_to_member_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_M_messageENS_13_Debug_msg_idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_Parameter14_M_print_fieldEPKS0_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_Parameter20_M_print_descriptionEPKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter13_M_print_wordEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter15_M_print_stringEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter17_M_get_max_lengthEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter8_M_errorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug19_Safe_iterator_base11_M_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK11__gnu_debug19_Safe_iterator_base14_M_can_compareERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13get_allocatorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_sharedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4cendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4copyEPwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5c_strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5crendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5emptyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6_M_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6cbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6substrEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7_M_dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7_M_iendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7crbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8_M_checkEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8_M_limitEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8capacityEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8max_sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE9_M_ibeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSi6gcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSi6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSo6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs11_M_disjunctEPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNKSs11_M_disjunctEPKc@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs11_M_disjunctEPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs12find_last_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs12find_last_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs12find_last_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs12find_last_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs13find_first_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs13find_first_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs13find_first_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs13find_first_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs13get_allocatorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs15_M_check_lengthEmmPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs15_M_check_lengthEmmPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSs15_M_check_lengthEmmPKc@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs16find_last_not_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs16find_last_not_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs16find_last_not_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs16find_last_not_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs17find_first_not_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs17find_first_not_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs17find_first_not_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs17find_first_not_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4_Rep12_M_is_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4_Rep12_M_is_sharedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4cendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4copyEPcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4findEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4findEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4findERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4findEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5c_strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5crendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5emptyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5rfindEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5rfindEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5rfindERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs5rfindEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs6_M_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs6cbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs6lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs6substrEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7_M_dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7_M_iendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareEmmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareEmmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7compareEmmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs7crbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs8_M_checkEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs8_M_limitEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs8capacityEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs8max_sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSs9_M_ibeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSsixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10bad_typeid4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10error_code23default_error_conditionEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10istrstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10lock_error4whatEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10ostrstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt10ostrstream6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_am_pm_formatEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_date_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_time_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE19_M_days_abbreviatedEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE20_M_date_time_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE21_M_months_abbreviatedEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE7_M_daysEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE8_M_am_pmEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIcE9_M_monthsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_am_pm_formatEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_date_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_time_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE19_M_days_abbreviatedEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE20_M_date_time_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE21_M_months_abbreviatedEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE7_M_daysEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE8_M_am_pmEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11__timepunctIwE9_M_monthsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt11logic_error4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12__basic_fileIcE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12bad_weak_ptr4whatEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12future_error4whatEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt12strstreambuf6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13bad_exception4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_filebufIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_filebufIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6gcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13basic_ostreamIwSt11char_traitsIwEE6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt13runtime_error4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14error_category10equivalentERKSt10error_codei' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14error_category10equivalentEiRKSt15error_condition' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt14error_category23default_error_conditionEi' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptr20__cxa_exception_typeEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptrcvMS0_FvvEEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptrntEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4gptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5ebackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5epptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE6getlocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4gptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4pptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5ebackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5epptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5pbaseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE6getlocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3tr14hashIRKSbIwSt11char_traitsIwESaIwEEEclES6_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3tr14hashIRKSsEclES2_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3tr14hashISbIwSt11char_traitsIwESaIwEEEclES4_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3tr14hashISsEclESs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt3tr14hashIeEclEe' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashIRKSbIwSt11char_traitsIwESaIwEEEclES5_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashIRKSsEclES1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashISbIwSt11char_traitsIwESaIwEEEclES3_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashISsEclESs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashISt10error_codeEclES0_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt4hashIeEclEe' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE10do_tolowerEPcPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE10do_tolowerEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE10do_toupperEPcPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE10do_toupperEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE13_M_widen_initEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE14_M_narrow_initEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE8do_widenEPKcS2_Pc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE8do_widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIcE9do_narrowEcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE10do_scan_isEtPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE10do_tolowerEPwPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE10do_tolowerEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE10do_toupperEPwPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE10do_toupperEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE11do_scan_notEtPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE19_M_convert_to_wmaskEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE5do_isEPKwS2_Pt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE5do_isEtw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE8do_widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt5ctypeIwE9do_narrowEwc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6locale2id5_M_idEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6locale4nameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt6localeeqERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE11do_encodingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE13do_max_lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE16do_always_noconvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE11do_encodingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE13do_max_lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE16do_always_noconvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE10_M_compareEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE12_M_transformEPcPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE12do_transformEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE4hashEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE7compareEPKcS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE7do_hashEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIcE9transformEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE10_M_compareEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE12_M_transformEPwPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE12do_transformEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE4hashEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE7compareEPKwS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE7do_hashEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7collateIwE9transformEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES3_S3_RSt8ios_basewcT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIeEES3_S3_RSt8ios_basewcT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8bad_cast4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8ios_base7failure4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE18_M_convert_to_charERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE20_M_convert_from_charEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE3getEiiiRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE4openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE4openERKSsRKSt6localePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE5closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE6do_getEiiiRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE7do_openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIcE8do_closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE18_M_convert_to_charERKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE20_M_convert_from_charEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE4openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE4openERKSsRKSt6localePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE5closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE7do_openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8messagesIwE8do_closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE11do_truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE12do_falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE8truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIcE9falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE11do_truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE12do_falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE8truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8numpunctIwE9falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE24_M_extract_wday_or_monthES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE24_M_extract_wday_or_monthES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt8valarrayImE4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9bad_alloc4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE10exceptionsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3badEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3eofEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4failEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4goodEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEEcvPvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEEntEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE10exceptionsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3badEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3eofEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4failEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4goodEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE7rdstateEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEEcvPvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEEntEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9exception4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9strstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9strstream6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9type_info10__do_catchEPKS_PPvj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9type_info14__is_pointer_pEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt9type_info15__is_function_pEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcEC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIcEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcEC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIcEC1ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwEC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIwEC2ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwEC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIwEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSaIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSaIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE10_S_compareEmm' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC1EPwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC2EPwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC1EPwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_M_leak_hardEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructEmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIN9__gnu_cxx17__normal_iteratorIPwS2_EEEES6_T_S8_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIPKwEEPwT_S7_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIPwEES4_T_S5_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIPKwS2_EES8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIS3_S2_EES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwPKwS5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13shrink_to_fitEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE14_M_replace_auxEmmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE15_M_replace_safeEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE18_S_construct_aux_2EmwRKS1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_destroyERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_disposeERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refcopyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refdataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep13_M_set_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep15_M_set_sharableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep7_M_grabERKS1_S5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep8_M_cloneERKS1_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep9_S_createEmmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4swapERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5clearEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6resizeEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6resizeEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_dataEPw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_leakEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_NS4_IPKwS2_EES9_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwS8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_RKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S5_S5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S6_S6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_St16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_mw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7reserveEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE8pop_backEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_mutateEmmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9push_backEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2EOS2_@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ESt16initializer_listIwERKS1_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IPKwEET_S6_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IPwEET_S5_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2IPwEET_S5_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EOS2_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ESt16initializer_listIwERKS1_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ESt16initializer_listIwERKS1_@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IPKwEET_S6_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1IPKwEET_S6_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IPwEET_S5_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSbIwSt11char_traitsIwESaIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSdD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIPvEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIbEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIdEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIeEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIfEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIjEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIlEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractImEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractItEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIxEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi10_M_extractIyEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getEPclc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getERc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi3getEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi4peekEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi4readEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi5seekgESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi5seekgElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi5tellgEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi5ungetEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6ignoreEl' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSi6ignoreEl@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6ignoreEl' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6ignoreEli' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6ignoreEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSi6ignoreEv@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6ignoreEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6sentryC1ERSib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi6sentryC2ERSib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSi6sentryC1ERSib@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSi7getlineEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi7getlineEPclc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi7putbackEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSi8readsomeEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSiD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsEPFRSiS_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsEPFRSt8ios_baseS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsEPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSirsERy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo3putEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo5flushEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo5seekpESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo5seekpElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo5tellpEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo5writeEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo6sentryC1ERSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo6sentryC2ERSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSo6sentryC1ERSo@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSo6sentryD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSo6sentryD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSo6sentryD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo8_M_writeEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIPKvEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIbEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIdEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIeEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIlEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertImEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIxEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSo9_M_insertIyEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSoD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEPFRSoS_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEPFRSt8ios_baseS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSolsEy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs10_S_compareEmm' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_Alloc_hiderC1EPcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSs12_Alloc_hiderC2EPcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_Alloc_hiderC2EPcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_M_leak_hardEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructEmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIN9__gnu_cxx17__normal_iteratorIPcSsEEEES2_T_S4_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs13_S_copy_charsEPcPKcS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs13_S_copy_charsEPcS_S_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs13shrink_to_fitEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs14_M_replace_auxEmmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs15_M_replace_safeEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs18_S_construct_aux_2EmcRKSaIcE' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep10_M_destroyERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep10_M_disposeERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep10_M_refcopyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep10_M_refdataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep13_M_set_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep15_M_set_sharableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSs4_Rep26_M_set_length_and_sharableEm@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep7_M_grabERKSaIcES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep8_M_cloneERKSaIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep9_S_createEmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4swapERSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5clearEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5eraseEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignEOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6assignEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6insertEmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6resizeEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6resizeEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_copyEPcPKcm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_copyEPcPKcm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSs7_M_copyEPcPKcm@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_dataEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_leakEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_moveEPcPKcm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSs7_M_moveEPcPKcm@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7_M_moveEPcPKcm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_St16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEmmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEmmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEmmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7replaceEmmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs7reserveEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs8pop_backEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs9_M_assignEPcmc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSs9_M_assignEPcmc@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSs9_M_assignEPcmc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs9_M_mutateEmmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs9push_backEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1EOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1EPKcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2EPKcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1EPKcmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2EPKcmRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1ERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2ERKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1ERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2ERKSsmm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1ERKSsmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1ESt16initializer_listIcERKSaIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1EmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1IPKcEET_S2_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC2IPKcEET_S2_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC1IPcEET_S1_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2EOSs' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1EOSs@@GLIBCXX_3.4.14' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2EPKcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2EPKcmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2ERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2ERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2ERKSsmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1ERKSsmmRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2ESt16initializer_listIcERKSaIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1ESt16initializer_listIcERKSaIcE@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2EmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1EmcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsC1IPcEET_S1_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSsD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSsD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsaSEOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsaSEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsaSERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsaSESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsaSEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSspLEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSspLERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSspLESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSspLEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10__num_base15_S_format_floatERKSt8ios_basePcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10bad_typeidD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10bad_typeidD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10bad_typeidD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt10bad_typeidD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC1EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC1EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC1EPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC1EPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC2EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC2EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC2EPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamC2EPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10istrstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10money_base20_S_construct_patternEccc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt10moneypunctIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIcLb1EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt10moneypunctIcLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt10moneypunctIwLb0EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1EPSt18__moneypunct_cacheIwLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt10moneypunctIwLb1EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt10moneypunctIwLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstream6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamC1EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamC2EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ostrstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcE23_M_initialize_timepunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC1EPSt17__timepunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwE23_M_initialize_timepunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC1EPSt17__timepunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt11__timepunctIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE2eqERKcS2_' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11char_traitsIcE2eqERKcS2_@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE2eqERKcS2_' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIwE2eqERKwS2_' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11char_traitsIwE2eqERKwS2_@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIwE2eqERKwS2_' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11logic_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11logic_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11logic_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11logic_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11logic_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11logic_errorD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11logic_errorD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11range_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11range_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11range_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11range_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11range_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11range_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11range_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11regex_errorD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11regex_errorD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt11regex_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11regex_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE2fdEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE4fileEv' version='GLIBCXX_3.4.1' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE4openEPKcSt13_Ios_Openmodei' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE8sys_openEP8_IO_FILESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE8sys_openEiSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcEC1EP15pthread_mutex_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcEC2EP15pthread_mutex_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12__basic_fileIcEC1EP15pthread_mutex_t@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12__basic_fileIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12__basic_fileIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12bad_weak_ptrD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12bad_weak_ptrD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12bad_weak_ptrD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12bad_weak_ptrD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12ctype_bynameIcEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12ctype_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12ctype_bynameIwEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12ctype_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12ctype_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12domain_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12domain_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12domain_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12domain_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12domain_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12domain_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12domain_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12future_errorD0Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12future_errorD1Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12future_errorD2Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12future_errorD1Ev@@GLIBCXX_3.4.14' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12length_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12length_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12length_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12length_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12length_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12length_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12length_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12out_of_rangeC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12out_of_rangeC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12out_of_rangeC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12out_of_rangeD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12out_of_rangeD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12out_of_rangeD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12out_of_rangeD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf7_M_freeEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf8_M_allocEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf8_M_setupEPcS0_l' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambuf9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPFPvmEPFvS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPFPvmEPFvS0_E@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPKal' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPKal@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPKcl@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPKhl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPKhl@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPalS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPalS0_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPclS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPclS0_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1EPhlS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC2EPhlS0_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC1El' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPFPvmEPFvS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPKal' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPKhl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPalS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPclS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2EPhlS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufC2El' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufC1El@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12strstreambufD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12strstreambufD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12system_errorD0Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12system_errorD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12system_errorD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt12system_errorD1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base11_State_baseD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base11_State_baseD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base11_State_baseD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13__future_base11_State_baseD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base12_Result_baseC1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base12_Result_baseC2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13__future_base12_Result_baseC1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base12_Result_baseD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base12_Result_baseD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base12_Result_baseD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13__future_base12_Result_baseD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD0Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD1Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13__future_base19_Async_state_commonD2Ev@@GLIBCXX_3.4.17' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD2Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13bad_exceptionD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13bad_exceptionD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13bad_exceptionD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13bad_exceptionD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE13_M_set_bufferEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE14_M_get_ext_posER11__mbstate_t' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE15_M_create_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE16_M_destroy_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE19_M_terminate_outputEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE22_M_convert_to_externalEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE26_M_destroy_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE27_M_allocate_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE13_M_set_bufferEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE14_M_get_ext_posER11__mbstate_t' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE15_M_create_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE16_M_destroy_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE19_M_terminate_outputEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE22_M_convert_to_externalEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE26_M_destroy_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE27_M_allocate_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_filebufIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIPvEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIbEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIdEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIeEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIfEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIjEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIlEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractImEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractItEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIxEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIyEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_Ew' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4peekEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5tellgEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5ungetEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreElj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC1ERS2_b' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC2ERS2_b@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC2ERS2_b' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7putbackEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRS2_S3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt8ios_baseS4_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt9basic_iosIwS1_ES5_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE3putEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5tellpEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5writeEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC1ERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIPKvEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIbEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIdEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIeEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIlEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertImEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIxEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIyEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRS2_S3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt8ios_baseS4_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt9basic_iosIwS1_ES5_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13runtime_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13runtime_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13runtime_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13runtime_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13runtime_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt13runtime_errorD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt13runtime_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14codecvt_bynameIcc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14codecvt_bynameIwc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14collate_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14collate_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14collate_bynameIwEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14collate_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt14collate_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14error_categoryC1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt14error_categoryC2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14error_categoryC2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14error_categoryD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14error_categoryD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14error_categoryD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt14error_categoryD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14overflow_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14overflow_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt14overflow_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14overflow_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14overflow_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt14overflow_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14overflow_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base11_M_transferEPS_S0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base4hookEPS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base4swapERS_S0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base6unhookEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base7_M_hookEPS_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base7reverseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base8transferEPS_S0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptr4swapERS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1EMS0_FvvE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15__exception_ptr13exception_ptrC2EMS0_FvvE@@CXXABI_1.3.3' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1ERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15__exception_ptr13exception_ptrC2Ev@@CXXABI_1.3.3' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2EMS0_FvvE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2ERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15__exception_ptr13exception_ptrC1ERKS0_@@CXXABI_1.3.3' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrD1Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrD2Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15__exception_ptr13exception_ptrD1Ev@@CXXABI_1.3.3' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptraSERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptreqERKNS_13exception_ptrES2_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15__exception_ptrneERKNS_13exception_ptrES2_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_gbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_pbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4setgEPcS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4setpEPcS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5gbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5pbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputcEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6sbumpcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6snextcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6stosscEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7pubsyncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7sungetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8in_availEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pubsetbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9sputbackcEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_gbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_pbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4setgEPwS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4setpEPwS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5gbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5pbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputcEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6sbumpcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6snextcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6stosscEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7pubsyncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7sungetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8in_availEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pubsetbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9sputbackcEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE15_M_update_egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE17_M_stringbuf_initESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8_M_pbumpEPcS4_l' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9showmanycEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE15_M_update_egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE17_M_stringbuf_initESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8_M_pbumpEPwS4_l' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9showmanycEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15messages_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15messages_bynameIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15messages_bynameIwEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15messages_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15messages_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15numpunct_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15numpunct_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15numpunct_bynameIwEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15numpunct_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15numpunct_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15underflow_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15underflow_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15underflow_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15underflow_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15underflow_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt15underflow_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt15underflow_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt16__numpunct_cacheIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt16__numpunct_cacheIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt16__numpunct_cacheIwEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt16__numpunct_cacheIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16__numpunct_cacheIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16invalid_argumentC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16invalid_argumentC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt16invalid_argumentC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16invalid_argumentD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16invalid_argumentD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt16invalid_argumentD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16invalid_argumentD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16nested_exceptionD0Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16nested_exceptionD1Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt16nested_exceptionD2Ev@@CXXABI_1.3.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSt16nested_exceptionD2Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17__timepunct_cacheIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17__timepunct_cacheIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17__timepunct_cacheIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17__timepunct_cacheIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17bad_function_callD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17bad_function_callD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt17bad_function_callD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17bad_function_callD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIcLb0EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIcLb1EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIcLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIwLb0EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIwLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt17moneypunct_bynameIwLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIcLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIcLb1EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIcLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIwLb0EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIwLb0EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIwLb1EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt18__moneypunct_cacheIwLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variable10notify_allEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variable10notify_oneEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variable4waitERSt11unique_lockISt5mutexE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variableC1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variableC2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt18condition_variableC1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variableD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt18condition_variableD2Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt18condition_variableD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' alias='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv@@GLIBCXX_3.4.5' is-defined='yes'/>
-    <elf-symbol name='_ZNSt22condition_variable_anyC1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt22condition_variable_anyC2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt22condition_variable_anyC1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt22condition_variable_anyD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt22condition_variable_anyD2Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt22condition_variable_anyD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcE13classic_tableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcEC1EP15__locale_structPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcEC1EPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIcEC2EPKtbm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcEC2EP15__locale_structPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIcEC1EP15__locale_structPKtbm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcEC2EPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwE19_M_initialize_ctypeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIwEC2EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt5ctypeIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base4hookEPS0_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base6unhookEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base7reverseEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6__norm15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono12system_clock3nowEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale11_M_coalesceERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale21_S_normalize_categoryEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm' version='GLIBCXX_3.4.7' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC1ERKS0_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6locale5_ImplC2ERKS0_m@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6locale5_ImplC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC2ERKS0_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6locale5_ImplC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6locale5_ImplD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5_ImplD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facet13_S_get_c_nameEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facet15_S_get_c_localeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facet17_S_clone_c_localeERP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facet18_S_create_c_localeERP15__locale_structPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facet19_S_destroy_c_localeERP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facetD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facetD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6locale5facetD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5facetD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale6globalERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale7classicEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC2EPKc@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1EPNS_5_ImplE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC2EPNS_5_ImplE@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC2ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1ERKS_PKci' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC2ERKS_PKci@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1ERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2EPNS_5_ImplE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2ERKS_PKci' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2ERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC1ERKS_S1_i@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt6localeD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6localeaSERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread20hardware_concurrencyEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread4joinEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6thread6detachEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIcc11__mbstate_tEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIcc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIwc11__mbstate_tEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt7codecvtIwc11__mbstate_tED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIcEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIwEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7collateIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail15_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8bad_castD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8bad_castD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8bad_castD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8bad_castD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base13_M_grow_wordsEib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base15sync_with_stdioEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base17_M_call_callbacksENS_5eventE' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base17register_callbackEPFvNS_5eventERS_iEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base20_M_dispose_callbacksEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4InitC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_base4InitC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4InitC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4InitD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_base4InitD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4InitD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base6xallocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7_M_initEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failureC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_base7failureC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failureC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failureD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failureD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_base7failureD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failureD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_baseC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_baseC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_baseC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_baseD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_baseD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8ios_baseD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_baseD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIcEC1EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8messagesIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcE22_M_initialize_numpunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC1EPSt16__numpunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIcEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8numpunctIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwE22_M_initialize_numpunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIwEC2EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC1EPSt16__numpunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8numpunctIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt8numpunctIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImEC1ERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8valarrayImEC2ERKS0_@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImEC2ERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8valarrayImEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt8valarrayImED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8valarrayImEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__atomic011atomic_flag12test_and_setESt12memory_order' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNVSt9__atomic011atomic_flag12test_and_setESt12memory_order@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__atomic011atomic_flag5clearESt12memory_order' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNVSt9__atomic011atomic_flag5clearESt12memory_order@@GLIBCXX_3.4.11' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base4hookEPS0_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base6unhookEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base7reverseEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9__cxx199815_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9bad_allocD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9bad_allocD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9bad_allocD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt9bad_allocD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE10exceptionsESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE11_M_setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE15_M_cache_localeERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE10exceptionsESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE11_M_setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE15_M_cache_localeERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5clearESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE8setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9basic_iosIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9exceptionD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9exceptionD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt9exceptionD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9exceptionD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' alias='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstream6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamC1EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamC2EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9strstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9type_infoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9type_infoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9type_infoD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' alias='_ZNSt9type_infoD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
-    <elf-symbol name='_ZNVSt9__atomic011atomic_flag12test_and_setESt12memory_order' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNVSt9__atomic011atomic_flag5clearESt12memory_order' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10unexpectedv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11_Hash_bytesPKvmm' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt13set_terminatePFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__convert_to_vIdEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__convert_to_vIeEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt14set_unexpectedPFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15_Fnv_hash_bytesPKvmm' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15future_categoryv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15set_new_handlerPFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15system_categoryv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_l' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16__throw_bad_castv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt16generic_categoryv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17__copy_streambufsIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_' version='GLIBCXX_3.4.8' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17__copy_streambufsIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_' version='GLIBCXX_3.4.8' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17__throw_bad_allocv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17__verify_groupingPKcmRKSs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17current_exceptionv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt17rethrow_exceptionNSt15__exception_ptr13exception_ptrE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18__throw_bad_typeidv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt18uncaught_exceptionv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__throw_ios_failurePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__throw_logic_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__throw_range_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__throw_regex_errorNSt15regex_constants10error_typeE' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20_Rb_tree_black_countPKSt18_Rb_tree_node_baseS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20_Rb_tree_rotate_leftPSt18_Rb_tree_node_baseRS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20__throw_domain_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20__throw_future_errori' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20__throw_length_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20__throw_out_of_rangePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt20__throw_system_errori' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21_Rb_tree_rotate_rightPSt18_Rb_tree_node_baseRS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__copy_streambufs_eofIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_Rb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__copy_streambufs_eofIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_Rb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__throw_bad_exceptionv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt21__throw_runtime_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt22__throw_overflow_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt23__throw_underflow_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt24__throw_invalid_argumentPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt25__throw_bad_function_callv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt2wsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt2wsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4endlIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4endsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4endsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt10moneypunctIcLb0EEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt10moneypunctIwLb0EEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt11__timepunctIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt11__timepunctIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt5ctypeIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt5ctypeIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7codecvtIcc11__mbstate_tEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7codecvtIwc11__mbstate_tEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7collateIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7collateIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8messagesIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8messagesIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8numpunctIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8numpunctIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9has_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9terminatev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt11__timepunctIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt11__timepunctIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7codecvtIcc11__mbstate_tEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7codecvtIwc11__mbstate_tEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7collateIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7collateIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8messagesIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8messagesIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKa' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKh' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_a' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_h' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIdcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIdwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIecSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIewSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIfcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIfwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_c' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStlsIwSt11char_traitsIwESaIwEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ES3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_EPKS3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ERKS6_S8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ES3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Pa' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ph' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ra' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Rh' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_PS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIdcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIdwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIecSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIewSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIfcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIfwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_PS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStrsIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZThn16_NSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSiD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSiD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt10istrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt10istrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt10ostrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt10ostrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTv0_n24_NSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdaPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdaPvRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZdlPvRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znam' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnamRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Znwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZnwmRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__atomic_flag_for_address' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__atomic_flag_wait_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_allocate_dependent_exception' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_allocate_exception' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_bad_cast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_bad_typeid' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_begin_catch' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_call_unexpected' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_current_exception_type' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_deleted_virtual' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_demangle' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_end_catch' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_free_dependent_exception' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_free_exception' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_get_exception_ptr' version='CXXABI_1.3.1' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_get_globals' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_get_globals_fast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_abort' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_acquire' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_guard_release' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_pure_virtual' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_rethrow' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_throw' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_tm_cleanup' version='CXXABI_TM_1' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_cctor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_cleanup' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_ctor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_delete2' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_delete3' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_delete' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_dtor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_new2' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_new3' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__cxa_vec_new' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__dynamic_cast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__gxx_personality_v0' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__once_proxy' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='atomic_flag_clear_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='atomic_flag_test_and_set_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv116__enum_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv116__enum_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv117__array_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__array_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv117__class_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv117__pbase_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv117__pbase_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv119__pointer_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv119__pointer_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv120__function_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__function_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv120__si_class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv120__si_class_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv121__vmi_class_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv121__vmi_class_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv123__fundamental_type_infoD2Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv123__fundamental_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev@@CXXABI_1.3' is-defined='yes'/>
+    <elf-symbol name='_ZN10__gnu_norm15_List_node_base4hookEPS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__gnu_norm15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__gnu_norm15_List_node_base6unhookEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__gnu_norm15_List_node_base7reverseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN10__gnu_norm15_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base12_M_get_mutexEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base16_M_attach_singleEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base16_M_detach_singleEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_iterator_base9_M_detachEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base12_M_get_mutexEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base13_M_detach_allEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base18_M_detach_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base22_M_revalidate_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug19_Safe_sequence_base7_M_swapERS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_attachEPNS_19_Safe_sequence_baseEb' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug25_Safe_local_iterator_base9_M_detachEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug30_Safe_unordered_container_base13_M_detach_allEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN11__gnu_debug30_Safe_unordered_container_base7_M_swapERS0_' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14__gnu_parallel9_Settings3getEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN14__gnu_parallel9_Settings3setERS0_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx12__atomic_addEPVii' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base12_M_get_mutexEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base16_M_get_free_listEm' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__pool_alloc_base9_M_refillEm' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18__exchange_and_addEPVii' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4fileEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE5uflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC1EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC2EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEC1EP8_IO_FILE@@GLIBCXX_3.4.10' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4fileEv' version='GLIBCXX_3.4.2' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE5uflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC1EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC2EP8_IO_FILE' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEC1EP8_IO_FILE@@GLIBCXX_3.4.10' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx27__verbose_terminate_handlerEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE10_M_destroyEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE13_M_initializeEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE16_M_reclaim_blockEPcm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb0EE16_M_reserve_blockEmm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE10_M_destroyEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEPFvPvE' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE13_M_initializeEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_get_thread_idEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_reclaim_blockEPcm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE16_M_reserve_blockEmm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx6__poolILb1EE21_M_destroy_thread_keyEPv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx9free_list6_M_getEm' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx9free_list8_M_clearEv' version='GLIBCXX_3.4.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__class_type_info20__do_find_public_srcElPKvPKS0_S2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__pbase_type_info10__do_catchEPKSt9type_infoPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv119__pointer_type_info14__is_pointer_pEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv119__pointer_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv120__function_type_info15__is_function_pEv' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv121__vmi_class_type_info20__do_find_public_srcElPKvPKNS_17__class_type_infoES2_' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK10__cxxabiv129__pointer_to_member_type_info15__pointer_catchEPKNS_17__pbase_type_infoEPPvj' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_M_messageENS_13_Debug_msg_idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_Parameter14_M_print_fieldEPKS0_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter10_Parameter20_M_print_descriptionEPKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter13_M_print_wordEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter15_M_print_stringEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter17_M_get_max_lengthEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug16_Error_formatter8_M_errorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug19_Safe_iterator_base11_M_singularEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK11__gnu_debug19_Safe_iterator_base14_M_can_compareERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSbIwSt11char_traitsIwESaIwEE11_M_disjunctEPKw@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE12find_last_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13find_first_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE13get_allocatorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE15_M_check_lengthEmmPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE16find_last_not_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE17find_first_not_ofEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4_Rep12_M_is_sharedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4cendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4copyEPwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4findEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5c_strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5crendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5emptyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEPKwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindERKS2_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE5rfindEwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6_M_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6cbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE6substrEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7_M_dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7_M_iendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7compareEmmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE7crbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8_M_checkEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8_M_limitEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8capacityEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE8max_sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEE9_M_ibeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSbIwSt11char_traitsIwESaIwEEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSi6gcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSi6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSo6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs11_M_disjunctEPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSs11_M_disjunctEPKc@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs11_M_disjunctEPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs12find_last_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs12find_last_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs12find_last_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs12find_last_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs13find_first_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs13find_first_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs13find_first_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs13find_first_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs13get_allocatorEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs15_M_check_lengthEmmPKc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs15_M_check_lengthEmmPKc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSs15_M_check_lengthEmmPKc@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs16find_last_not_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs16find_last_not_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs16find_last_not_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs16find_last_not_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs17find_first_not_ofEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs17find_first_not_ofEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs17find_first_not_ofERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs17find_first_not_ofEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4_Rep12_M_is_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4_Rep12_M_is_sharedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4cendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4copyEPcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4findEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4findEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4findERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4findEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5c_strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5crendEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5emptyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5rfindEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5rfindEPKcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5rfindERKSsm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs5rfindEcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs6_M_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs6cbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs6lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs6substrEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7_M_dataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7_M_iendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareEmmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareEmmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7compareEmmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs7crbeginEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs8_M_checkEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs8_M_limitEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs8capacityEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs8max_sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSs9_M_ibeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSsixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10bad_typeid4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10error_code23default_error_conditionEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10istrstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10lock_error4whatEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb0EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIcLb1EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb0EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE10neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE10pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE11frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13do_neg_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13do_pos_formatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE14do_curr_symbolEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE14do_frac_digitsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_negative_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_positive_signEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10moneypunctIwLb1EE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10ostrstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt10ostrstream6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_am_pm_formatEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_date_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE15_M_time_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE19_M_days_abbreviatedEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE20_M_date_time_formatsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE21_M_months_abbreviatedEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE7_M_daysEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE8_M_am_pmEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIcE9_M_monthsEPPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_am_pm_formatEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_date_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE15_M_time_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE19_M_days_abbreviatedEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE20_M_date_time_formatsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE21_M_months_abbreviatedEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE6_M_putEPwmPKwPK2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE7_M_daysEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE8_M_am_pmEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11__timepunctIwE9_M_monthsEPPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt11logic_error4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12__basic_fileIcE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12bad_weak_ptr4whatEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12future_error4whatEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt12strstreambuf6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13bad_exception4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_filebufIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_filebufIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6gcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_istreamIwSt11char_traitsIwEE6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13basic_ostreamIwSt11char_traitsIwEE6sentrycvbEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt13runtime_error4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNKSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14error_category10equivalentERKSt10error_codei' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14error_category10equivalentEiRKSt15error_condition' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt14error_category23default_error_conditionEi' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptr20__cxa_exception_typeEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptrcvMS0_FvvEEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15__exception_ptr13exception_ptrntEv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4gptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4pptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5ebackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5epptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE5pbaseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE6getlocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4gptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4pptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5ebackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5epptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE5pbaseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE6getlocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt18basic_stringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt18basic_stringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_istringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_istringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3tr14hashIRKSbIwSt11char_traitsIwESaIwEEEclES6_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3tr14hashIRKSsEclES2_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3tr14hashISbIwSt11char_traitsIwESaIwEEEclES4_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3tr14hashISsEclESs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt3tr14hashIeEclEe' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashIRKSbIwSt11char_traitsIwESaIwEEEclES5_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashIRKSsEclES1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashISbIwSt11char_traitsIwESaIwEEEclES3_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashISsEclESs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashISt10error_codeEclES0_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt4hashIeEclEe' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE10do_tolowerEPcPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE10do_tolowerEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE10do_toupperEPcPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE10do_toupperEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE13_M_widen_initEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE14_M_narrow_initEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE8do_widenEPKcS2_Pc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE8do_widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIcE9do_narrowEcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE10do_scan_isEtPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE10do_tolowerEPwPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE10do_tolowerEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE10do_toupperEPwPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE10do_toupperEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE11do_scan_notEtPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE19_M_convert_to_wmaskEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE5do_isEPKwS2_Pt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE5do_isEtw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE8do_widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt5ctypeIwE9do_narrowEwc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6locale2id5_M_idEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6locale4nameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt6localeeqERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE11do_encodingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE13do_max_lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE16do_always_noconvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE5do_inERS0_PKcS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE6do_outERS0_PKcS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIcc11__mbstate_tE9do_lengthERS0_PKcS4_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE10do_unshiftERS0_PcS3_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE11do_encodingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE13do_max_lengthEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE16do_always_noconvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE5do_inERS0_PKcS4_RS4_PwS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE6do_outERS0_PKwS4_RS4_PcS6_RS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7codecvtIwc11__mbstate_tE9do_lengthERS0_PKcS4_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE10_M_compareEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE12_M_transformEPcPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE12do_transformEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE4hashEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE7compareEPKcS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE7do_hashEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIcE9transformEPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE10_M_compareEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE12_M_transformEPwPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE12do_transformEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE4hashEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE7compareEPKwS2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE7do_hashEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7collateIwE9transformEPKwS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16_M_extract_floatES3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRSt12_Ios_IostateRy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE12_M_group_intEPKcmcRSt8ios_basePcS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE14_M_group_floatEPKcmcS6_PcS7_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6_M_padEclRSt8ios_basePcPKcRi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE12_M_group_intEPKcmwRSt8ios_basePwS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIlEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intImEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIxEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE13_M_insert_intIyEES3_S3_RSt8ios_basewT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE14_M_group_floatEPKcmwPKwPwS9_Ri' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIdEES3_S3_RSt8ios_basewcT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE15_M_insert_floatIeEES3_S3_RSt8ios_basewcT_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6_M_padEwlRSt8ios_basePwPKwRi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8bad_cast4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8ios_base7failure4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE18_M_convert_to_charERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE20_M_convert_from_charEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE3getEiiiRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE4openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE4openERKSsRKSt6localePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE5closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE6do_getEiiiRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE7do_openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIcE8do_closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE18_M_convert_to_charERKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE20_M_convert_from_charEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE4openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE4openERKSsRKSt6localePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE5closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE7do_openERKSsRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8messagesIwE8do_closeEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE11do_truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE12do_falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE8truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIcE9falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE11do_groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE11do_truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE12do_falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE13decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE13thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE16do_decimal_pointEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE16do_thousands_sepEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE8groupingEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE8truenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8numpunctIwE9falsenameEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE15_M_extract_nameES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE24_M_extract_wday_or_monthES3_S3_RiPPKcmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14_M_extract_numES3_S3_RiiimRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE15_M_extract_nameES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE21_M_extract_via_formatES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE24_M_extract_wday_or_monthES3_S3_RiPPKwmRSt8ios_baseRSt12_Ios_Iostate' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRSt12_Ios_IostateP2tm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt8valarrayImE4sizeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9bad_alloc4whatEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE10exceptionsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3badEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3eofEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4failEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4goodEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEEcvPvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIcSt11char_traitsIcEEntEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE10exceptionsEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3badEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3eofEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4failEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE4goodEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEE7rdstateEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEEcvPvEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9basic_iosIwSt11char_traitsIwEEntEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9exception4whatEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRSt12_Ios_IostateRe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb0EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE9_M_insertILb1EEES3_S3_RSt8ios_basewRKSbIwS2_SaIwEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9strstream5rdbufEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9strstream6pcountEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9type_info10__do_catchEPKS_PPvj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9type_info14__is_pointer_pEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt9type_info15__is_function_pEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcEC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIcEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcEC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIcEC1ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwEC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIwEC2ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwEC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIwEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSaIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSaIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE10_S_compareEmm' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC1EPwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC2EPwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEE12_Alloc_hiderC1EPwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_M_leak_hardEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructEmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIN9__gnu_cxx17__normal_iteratorIPwS2_EEEES6_T_S8_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIPKwEEPwT_S7_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_constructIPwEES4_T_S5_RKS1_St20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIPKwS2_EES8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwN9__gnu_cxx17__normal_iteratorIS3_S2_EES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwPKwS5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13_S_copy_charsEPwS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE13shrink_to_fitEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE14_M_replace_auxEmmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE15_M_replace_safeEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE18_S_construct_aux_2EmwRKS1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_destroyERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_disposeERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refcopyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep10_M_refdataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep13_M_set_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep15_M_set_sharableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep7_M_grabERKS1_S5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep8_M_cloneERKS1_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep9_S_createEmmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4swapERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5clearEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6assignEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEN9__gnu_cxx17__normal_iteratorIPwS2_EEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6resizeEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6resizeEmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEE7_M_copyEPwPKwm@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_dataEPw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_leakEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEE7_M_moveEPwPKwm@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_NS4_IPKwS2_EES9_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwS8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_PKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_RKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S5_S5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_S6_S6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_St16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEN9__gnu_cxx17__normal_iteratorIPwS2_EES6_mw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmmw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE7reserveEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE8pop_backEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEE9_M_assignEPwmw@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9_M_mutateEmmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE9push_backEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2EOS2_@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1ESt16initializer_listIwERKS1_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IPKwEET_S6_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC1IPwEET_S5_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC2IPwEET_S5_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EOS2_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EPKwmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1EPKwmRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ERKS2_mm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ERKS2_mmRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2ESt16initializer_listIwERKS1_' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1ESt16initializer_listIwERKS1_@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2EmwRKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1EmwRKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IN9__gnu_cxx17__normal_iteratorIPwS2_EEEET_S8_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IPKwEET_S6_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEEC1IPKwEET_S6_RKS1_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEC2IPwEET_S5_RKS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSbIwSt11char_traitsIwESaIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEOS2_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEaSEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLEPKw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLESt16initializer_listIwE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEEpLEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSdD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIPvEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIbEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIdEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIeEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIfEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIjEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIlEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractImEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractItEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIxEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi10_M_extractIyEERSiRT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getEPclc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getERSt15basic_streambufIcSt11char_traitsIcEEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getERc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi3getEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi4peekEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi4readEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi5seekgESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi5seekgElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi5tellgEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi5ungetEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6ignoreEl' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSi6ignoreEl@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6ignoreEl' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6ignoreEli' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6ignoreEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSi6ignoreEv@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6ignoreEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6sentryC1ERSib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi6sentryC2ERSib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSi6sentryC1ERSib@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSi7getlineEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi7getlineEPclc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi7putbackEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSi8readsomeEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSiD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsEPFRSiS_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsEPFRSt8ios_baseS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsEPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSirsERy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo3putEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo5flushEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo5seekpESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo5seekpElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo5tellpEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo5writeEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo6sentryC1ERSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo6sentryC2ERSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSo6sentryC1ERSo@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSo6sentryD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSo6sentryD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSo6sentryD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo8_M_writeEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIPKvEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIbEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIdEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIeEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIlEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertImEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIxEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSo9_M_insertIyEERSoT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoC2EPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSoD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEPFRSoS_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEPFRSt8ios_baseS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEPFRSt9basic_iosIcSt11char_traitsIcEES3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEPSt15basic_streambufIcSt11char_traitsIcEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSolsEy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs10_S_compareEmm' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_Alloc_hiderC1EPcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSs12_Alloc_hiderC2EPcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_Alloc_hiderC2EPcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_M_leak_hardEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructEmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIN9__gnu_cxx17__normal_iteratorIPcSsEEEES2_T_S4_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIPKcSsEES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs13_S_copy_charsEPcN9__gnu_cxx17__normal_iteratorIS_SsEES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs13_S_copy_charsEPcPKcS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs13_S_copy_charsEPcS_S_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs13shrink_to_fitEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs14_M_replace_auxEmmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs15_M_replace_safeEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs18_S_construct_aux_2EmcRKSaIcE' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs2atEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs3endEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep10_M_destroyERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep10_M_disposeERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep10_M_refcopyEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep10_M_refdataEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep12_S_empty_repEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep13_M_set_leakedEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep15_M_set_sharableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep26_M_set_length_and_sharableEm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSs4_Rep26_M_set_length_and_sharableEm@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep7_M_grabERKSaIcES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep8_M_cloneERKSaIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep9_S_createEmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4backEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4rendEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4swapERSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5beginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5clearEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5eraseEN9__gnu_cxx17__normal_iteratorIPcSsEES2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5eraseEmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs5frontEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignEOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignEPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6assignEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEN9__gnu_cxx17__normal_iteratorIPcSsEEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6insertEmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6rbeginEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6resizeEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6resizeEmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_copyEPcPKcm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_copyEPcPKcm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSs7_M_copyEPcPKcm@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_dataEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_leakEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_moveEPcPKcm' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSs7_M_moveEPcPKcm@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7_M_moveEPcPKcm' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_NS0_IPKcSsEES5_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcS4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_PKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_RKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S1_S1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_S2_S2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_St16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEN9__gnu_cxx17__normal_iteratorIPcSsEES2_mc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEmmPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEmmPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEmmRKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEmmRKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7replaceEmmmc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs7reserveEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs8pop_backEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs9_M_assignEPcmc' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSs9_M_assignEPcmc@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSs9_M_assignEPcmc' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs9_M_mutateEmmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs9push_backEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1EOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1EPKcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2EPKcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1EPKcmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2EPKcmRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1ERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2ERKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1ERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2ERKSsmm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1ERKSsmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1ESt16initializer_listIcERKSaIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1EmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1IPKcEET_S2_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC2IPKcEET_S2_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC1IPcEET_S1_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2EOSs' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1EOSs@@GLIBCXX_3.4.14' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2EPKcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2EPKcmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2ERKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2ERKSsmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2ERKSsmmRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1ERKSsmmRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2ESt16initializer_listIcERKSaIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1ESt16initializer_listIcERKSaIcE@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2EmcRKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1EmcRKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IN9__gnu_cxx17__normal_iteratorIPcSsEEEET_S4_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsC1IPcEET_S1_RKSaIcE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSsD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSsD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsaSEOSs' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsaSEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsaSERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsaSESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsaSEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSspLEPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSspLERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSspLESt16initializer_listIcE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSspLEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10__num_base15_S_format_floatERKSt8ios_basePcc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10bad_typeidD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10bad_typeidD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10bad_typeidD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt10bad_typeidD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC1EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC1EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC1EPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC1EPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC2EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC2EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC2EPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamC2EPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10istrstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10money_base20_S_construct_patternEccc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2EPSt18__moneypunct_cacheIcLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb0EEC1EPSt18__moneypunct_cacheIcLb0EEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2EPSt18__moneypunct_cacheIcLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb1EEC1EPSt18__moneypunct_cacheIcLb1EEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb1EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIcLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2EPSt18__moneypunct_cacheIwLb0EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb0EEC1EPSt18__moneypunct_cacheIwLb0EEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb0EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EE24_M_initialize_moneypunctEP15__locale_structPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1EPSt18__moneypunct_cacheIwLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb1EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2EPSt18__moneypunct_cacheIwLb1EEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt10moneypunctIwLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstream6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamC1EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamC2EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ostrstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcE23_M_initialize_timepunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC1EPSt17__timepunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC2EPSt17__timepunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwE23_M_initialize_timepunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC1EPSt17__timepunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC2EPSt17__timepunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt11__timepunctIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE2eqERKcS2_' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11char_traitsIcE2eqERKcS2_@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE2eqERKcS2_' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIwE2eqERKwS2_' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11char_traitsIwE2eqERKwS2_@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIwE2eqERKwS2_' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11logic_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11logic_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11logic_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11logic_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11logic_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11logic_errorD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11logic_errorD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11range_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11range_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11range_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11range_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11range_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11range_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11range_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11regex_errorD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11regex_errorD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt11regex_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11regex_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE2fdEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE4fileEv' version='GLIBCXX_3.4.1' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE4openEPKcSt13_Ios_Openmodei' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE7seekoffElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE8sys_openEP8_IO_FILESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE8sys_openEiSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE8xsputn_2EPKclS2_l' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcEC1EP15pthread_mutex_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcEC2EP15pthread_mutex_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12__basic_fileIcEC1EP15pthread_mutex_t@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12__basic_fileIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12__basic_fileIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12bad_weak_ptrD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12bad_weak_ptrD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12bad_weak_ptrD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12bad_weak_ptrD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12ctype_bynameIcEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12ctype_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12ctype_bynameIwEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12ctype_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12ctype_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12domain_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12domain_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12domain_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12domain_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12domain_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12domain_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12domain_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12future_errorD0Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12future_errorD1Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12future_errorD2Ev' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12future_errorD1Ev@@GLIBCXX_3.4.14' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12length_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12length_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12length_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12length_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12length_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12length_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12length_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12out_of_rangeC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12out_of_rangeC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12out_of_rangeC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12out_of_rangeD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12out_of_rangeD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12out_of_rangeD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12out_of_rangeD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf7_M_freeEPc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf8_M_allocEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf8_M_setupEPcS0_l' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambuf9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPFPvmEPFvS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPFPvmEPFvS0_E@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPKal' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPKal@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPKcl@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPKhl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPKhl@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPalS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPalS0_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPclS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPclS0_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1EPhlS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC2EPhlS0_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC1El' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPFPvmEPFvS0_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPKal' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPKhl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPalS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPclS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2EPhlS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufC2El' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufC1El@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12strstreambufD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12strstreambufD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12system_errorD0Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12system_errorD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12system_errorD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt12system_errorD1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base11_State_baseD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base11_State_baseD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base11_State_baseD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13__future_base11_State_baseD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base12_Result_baseC1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base12_Result_baseC2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13__future_base12_Result_baseC1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base12_Result_baseD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base12_Result_baseD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base12_Result_baseD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13__future_base12_Result_baseD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD0Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD1Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13__future_base19_Async_state_commonD2Ev@@GLIBCXX_3.4.17' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13__future_base19_Async_state_commonD2Ev' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13bad_exceptionD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13bad_exceptionD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13bad_exceptionD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13bad_exceptionD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE13_M_set_bufferEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE14_M_get_ext_posER11__mbstate_t' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE15_M_create_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE16_M_destroy_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE19_M_terminate_outputEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE22_M_convert_to_externalEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE26_M_destroy_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE27_M_allocate_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_filebufIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE13_M_set_bufferEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE14_M_get_ext_posER11__mbstate_t' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE15_M_create_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE16_M_destroy_pbackEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE19_M_terminate_outputEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE22_M_convert_to_externalEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE26_M_destroy_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE27_M_allocate_internal_bufferEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7_M_seekElSt12_Ios_Seekdir11__mbstate_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_filebufIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_fstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIPvEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIbEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIdEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIeEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIfEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIjEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIlEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractImEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractItEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIxEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractIyEERS2_RT_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEPwlw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERSt15basic_streambufIwS1_Ew' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getERw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE3getEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4peekEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4readEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5seekgElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5tellgEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE5ungetEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEl' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreElj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC1ERS2_b' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC2ERS2_b@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE6sentryC2ERS2_b' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7getlineEPwlw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE7putbackEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEE8readsomeEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRS2_S3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt8ios_baseS4_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPFRSt9basic_iosIwS1_ES5_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_istreamIwSt11char_traitsIwEErsERy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE3putEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpESt4fposI11__mbstate_tE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5seekpElSt12_Ios_Seekdir' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5tellpEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE5writeEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC1ERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE8_M_writeEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIPKvEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIbEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIdEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIeEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIlEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertImEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIxEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIyEERS2_T_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRS2_S3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt8ios_baseS4_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPFRSt9basic_iosIwS1_ES5_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPKv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEf' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEt' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEx' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEy' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13runtime_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13runtime_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13runtime_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13runtime_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13runtime_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt13runtime_errorD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt13runtime_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ifstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_iostreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openEPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE4openERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE5closeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEE7is_openEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2EPKcSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4.13' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14basic_ofstreamIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIcc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14codecvt_bynameIcc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14codecvt_bynameIwc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14codecvt_bynameIwc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14collate_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14collate_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14collate_bynameIwEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14collate_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt14collate_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14error_categoryC1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt14error_categoryC2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14error_categoryC2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14error_categoryD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14error_categoryD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14error_categoryD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt14error_categoryD1Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14overflow_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14overflow_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt14overflow_errorC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14overflow_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14overflow_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt14overflow_errorD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14overflow_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base11_M_transferEPS_S0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base4hookEPS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base4swapERS_S0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base6unhookEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base7_M_hookEPS_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base7reverseEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base8transferEPS_S0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptr4swapERS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1EMS0_FvvE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15__exception_ptr13exception_ptrC2EMS0_FvvE@@CXXABI_1.3.3' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1ERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC1Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15__exception_ptr13exception_ptrC2Ev@@CXXABI_1.3.3' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2EMS0_FvvE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2ERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15__exception_ptr13exception_ptrC1ERKS0_@@CXXABI_1.3.3' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrC2Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrD1Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptrD2Ev' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15__exception_ptr13exception_ptrD1Ev@@CXXABI_1.3.3' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptr13exception_ptraSERKS0_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptreqERKNS_13exception_ptrES2_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15__exception_ptrneERKNS_13exception_ptrES2_' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_gbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE12__safe_pbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4setgEPcS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4setpEPcS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5gbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5pbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputcEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5sputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6sbumpcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6snextcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6stosscEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7pubsyncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE7sungetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8in_availEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9pubsetbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9sputbackcEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIcSt11char_traitsIcEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE10pubseekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_gbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE12__safe_pbumpEl' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4setgEPwS3_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4setpEPwS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5gbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5pbumpEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputcEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5sputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6sbumpcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6snextcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6stosscEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7pubsyncEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE7sungetcEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8in_availEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9pubsetbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9sputbackcEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2ERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEEC1ERKS2_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_streambufIwSt11char_traitsIwEEaSERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE15_M_update_egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE17_M_stringbuf_initESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE6setbufEPcl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7_M_syncEPcmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8_M_pbumpEPcS4_l' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE8overflowEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9pbackfailEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9showmanycEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE15_M_update_egptrEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE17_M_stringbuf_initESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE6setbufEPwl' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7_M_syncEPwmm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8_M_pbumpEPwS4_l' version='GLIBCXX_3.4.16' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE8overflowEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9pbackfailEj' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9showmanycEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE9underflowEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15messages_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15messages_bynameIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15messages_bynameIwEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15messages_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15messages_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIcEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15numpunct_bynameIcEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIcEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15numpunct_bynameIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIwEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15numpunct_bynameIwEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIwEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15numpunct_bynameIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15numpunct_bynameIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15underflow_errorC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15underflow_errorC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15underflow_errorC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15underflow_errorD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15underflow_errorD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt15underflow_errorD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt15underflow_errorD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16__numpunct_cacheIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16__numpunct_cacheIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16__numpunct_cacheIwEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt16__numpunct_cacheIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16__numpunct_cacheIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16invalid_argumentC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16invalid_argumentC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt16invalid_argumentC1ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16invalid_argumentD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16invalid_argumentD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt16invalid_argumentD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16invalid_argumentD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16nested_exceptionD0Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16nested_exceptionD1Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt16nested_exceptionD2Ev@@CXXABI_1.3.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSt16nested_exceptionD2Ev' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17__timepunct_cacheIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17__timepunct_cacheIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17__timepunct_cacheIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17__timepunct_cacheIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17bad_function_callD0Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17bad_function_callD1Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt17bad_function_callD2Ev@@GLIBCXX_3.4.15' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17bad_function_callD2Ev' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIcLb0EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIcLb1EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIcLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIwLb0EEC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIwLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EEC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EEC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt17moneypunct_bynameIwLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIcLb0EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIcLb0EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIcLb1EEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIcLb1EED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIcLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIwLb0EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb0EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIwLb0EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EE8_M_cacheERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIwLb1EEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18__moneypunct_cacheIwLb1EED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt18__moneypunct_cacheIwLb1EED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18basic_stringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variable10notify_allEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variable10notify_oneEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variable4waitERSt11unique_lockISt5mutexE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variableC1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variableC2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt18condition_variableC1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variableD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt18condition_variableD2Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt18condition_variableD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_istringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE3strERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ERKSsSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC1ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ERKSbIwS1_S2_ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEEC2ESt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt19istreambuf_iteratorIcSt11char_traitsIcEEppEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv' version='GLIBCXX_3.4.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv' version='GLIBCXX_3.4' is-default-version='no' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt19istreambuf_iteratorIwSt11char_traitsIwEEppEv@@GLIBCXX_3.4.5' is-defined='yes'/>
+    <elf-symbol name='_ZNSt22condition_variable_anyC1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt22condition_variable_anyC2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt22condition_variable_anyC1Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt22condition_variable_anyD1Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt22condition_variable_anyD2Ev@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt22condition_variable_anyD2Ev' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcE13classic_tableEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcEC1EP15__locale_structPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcEC1EPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIcEC2EPKtbm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcEC2EP15__locale_structPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIcEC1EP15__locale_structPKtbm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcEC2EPKtbm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwE19_M_initialize_ctypeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIwEC2EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt5ctypeIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base4hookEPS0_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base6unhookEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base7reverseEv' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6__norm15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono12system_clock3nowEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6gslice8_IndexerC2EmRKSt8valarrayImES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6gslice8_IndexerC1EmRKSt8valarrayImES4_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale11_M_coalesceERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale21_S_normalize_categoryEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_Impl16_M_install_cacheEPKNS_5facetEm' version='GLIBCXX_3.4.7' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_Impl16_M_install_facetEPKNS_2idEPKNS_5facetE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_Impl16_M_replace_facetEPKS0_PKNS_2idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_Impl19_M_replace_categoryEPKS0_PKPKNS_2idE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_Impl21_M_replace_categoriesEPKS0_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC1EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC1ERKS0_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6locale5_ImplC2ERKS0_m@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC2EPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6locale5_ImplC1EPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC2ERKS0_m' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6locale5_ImplC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6locale5_ImplD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5_ImplD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facet13_S_get_c_nameEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facet15_S_get_c_localeEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facet17_S_clone_c_localeERP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facet18_S_create_c_localeERP15__locale_structPKcS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facet19_S_destroy_c_localeERP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facetD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facetD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6locale5facetD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5facetD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale6globalERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale7classicEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC2EPKc@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1EPNS_5_ImplE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC2EPNS_5_ImplE@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC2ERKS_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1ERKS_PKci' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC2ERKS_PKci@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1ERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2EPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2EPNS_5_ImplE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2ERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2ERKS_PKci' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2ERKS_S1_i' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC1ERKS_S1_i@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt6localeD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6localeaSERKS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread15_M_start_threadESt10shared_ptrINS_10_Impl_baseEE' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread20hardware_concurrencyEv' version='GLIBCXX_3.4.17' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread4joinEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread6detachEv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIcc11__mbstate_tEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIcc11__mbstate_tEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIcc11__mbstate_tED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIwc11__mbstate_tEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIwc11__mbstate_tEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt7codecvtIwc11__mbstate_tED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIcEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIcED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIwEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7collateIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail15_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail15_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail15_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail15_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8bad_castD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8bad_castD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8bad_castD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8bad_castD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base13_M_grow_wordsEib' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base15sync_with_stdioEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base17_M_call_callbacksENS_5eventE' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base17register_callbackEPFvNS_5eventERS_iEi' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base20_M_dispose_callbacksEv' version='GLIBCXX_3.4.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4InitC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_base4InitC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4InitC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4InitD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_base4InitD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4InitD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base6xallocEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7_M_initEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failureC1ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_base7failureC2ERKSs@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failureC2ERKSs' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failureD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failureD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_base7failureD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failureD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_baseC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_baseC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_baseC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_baseD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_baseD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8ios_baseD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_baseD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIcEC1EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIcEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwEC1EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIwEC2EP15__locale_structPKcm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwEC2EP15__locale_structPKcm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8messagesIwED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcE22_M_initialize_numpunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC1EPSt16__numpunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIcEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIcEC1EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC2EPSt16__numpunct_cacheIcEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8numpunctIcED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwE22_M_initialize_numpunctEP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC1EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIwEC2EP15__locale_structm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC1EPSt16__numpunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8numpunctIwEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC2EP15__locale_structm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC2EPSt16__numpunct_cacheIwEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt8numpunctIwED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImEC1ERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8valarrayImEC2ERKS0_@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImEC2ERKS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8valarrayImEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt8valarrayImED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8valarrayImEixEm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__atomic011atomic_flag12test_and_setESt12memory_order' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNVSt9__atomic011atomic_flag12test_and_setESt12memory_order@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__atomic011atomic_flag5clearESt12memory_order' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNVSt9__atomic011atomic_flag5clearESt12memory_order@@GLIBCXX_3.4.11' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base10_M_reverseEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base11_M_transferEPS0_S1_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base4hookEPS0_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base4swapERS0_S1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base6unhookEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base7_M_hookEPS0_' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base7reverseEv' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base8transferEPS0_S1_' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9__cxx199815_List_node_base9_M_unhookEv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9bad_allocD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9bad_allocD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9bad_allocD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt9bad_allocD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE10exceptionsESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE11_M_setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE15_M_cache_localeERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE10exceptionsESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE11_M_setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE15_M_cache_localeERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5clearESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEE8setstateESt12_Ios_Iostate' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9basic_iosIwSt11char_traitsIwEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9basic_iosIwSt11char_traitsIwEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9exceptionD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9exceptionD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt9exceptionD2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9exceptionD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' alias='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstream3strEv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstream6freezeEb' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamC1EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamC1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamC2EPciSt13_Ios_Openmode' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamC2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9strstreamD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9type_infoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9type_infoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9type_infoD2Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZNSt9type_infoD1Ev@@GLIBCXX_3.4' is-defined='yes'/>
+    <elf-symbol name='_ZNVSt9__atomic011atomic_flag12test_and_setESt12memory_order' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNVSt9__atomic011atomic_flag5clearESt12memory_order' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10unexpectedv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11_Hash_bytesPKvmm' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13set_terminatePFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__convert_to_vIdEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__convert_to_vIeEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt14set_unexpectedPFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15_Fnv_hash_bytesPKvmm' version='CXXABI_1.3.5' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15future_categoryv' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15set_new_handlerPFvvE' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15system_categoryv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__ostream_insertIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_l' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__throw_bad_castv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16generic_categoryv' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17__copy_streambufsIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_' version='GLIBCXX_3.4.8' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17__copy_streambufsIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_' version='GLIBCXX_3.4.8' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17__throw_bad_allocv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17__verify_groupingPKcmRKSs' version='GLIBCXX_3.4.10' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17current_exceptionv' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt17rethrow_exceptionNSt15__exception_ptr13exception_ptrE' version='CXXABI_1.3.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18__throw_bad_typeidv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt18uncaught_exceptionv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__throw_ios_failurePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__throw_logic_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__throw_range_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__throw_regex_errorNSt15regex_constants10error_typeE' version='GLIBCXX_3.4.15' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20_Rb_tree_black_countPKSt18_Rb_tree_node_baseS1_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20_Rb_tree_rotate_leftPSt18_Rb_tree_node_baseRS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20__throw_domain_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20__throw_future_errori' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20__throw_length_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20__throw_out_of_rangePKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt20__throw_system_errori' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21_Rb_tree_rotate_rightPSt18_Rb_tree_node_baseRS0_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__copy_streambufs_eofIcSt11char_traitsIcEElPSt15basic_streambufIT_T0_ES6_Rb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__copy_streambufs_eofIwSt11char_traitsIwEElPSt15basic_streambufIT_T0_ES6_Rb' version='GLIBCXX_3.4.9' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__throw_bad_exceptionv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt21__throw_runtime_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__throw_overflow_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt23__throw_underflow_errorPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt24__throw_invalid_argumentPKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt25__throw_bad_function_callv' version='GLIBCXX_3.4.14' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt2wsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt2wsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4endlIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4endsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4endsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt5flushIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt5flushIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7getlineIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7getlineIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_ES4_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt10moneypunctIcLb0EEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt10moneypunctIwLb0EEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt11__timepunctIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt11__timepunctIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt5ctypeIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt5ctypeIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7codecvtIcc11__mbstate_tEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7codecvtIwc11__mbstate_tEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7collateIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7collateIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8messagesIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8messagesIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8numpunctIcEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8numpunctIwEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9has_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEEbRKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9terminatev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt11__timepunctIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt11__timepunctIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7codecvtIcc11__mbstate_tEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7codecvtIwc11__mbstate_tEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7collateIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7collateIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8messagesIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8messagesIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKa' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKh' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_a' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_h' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIdcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIdwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIecSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIewSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIfcSt11char_traitsIcEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIfwSt11char_traitsIwEERSt13basic_ostreamIT0_T1_ES6_RKSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_PKc' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_S3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwEERSt13basic_ostreamIT_T0_ES6_c' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStlsIwSt11char_traitsIwESaIwEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ES3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_EPKS3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ERKS6_S8_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIwSt11char_traitsIwESaIwEESbIT_T0_T1_ES3_RKS6_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Pa' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ph' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Ra' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsISt11char_traitsIcEERSt13basic_istreamIcT_ES5_Rh' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_PS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIcSt11char_traitsIcESaIcEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIdcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIdwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIecSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIewSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIfcSt11char_traitsIcEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIfwSt11char_traitsIwEERSt13basic_istreamIT0_T1_ES6_RSt7complexIT_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_PS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_RS3_' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St12_Setiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St13_Setprecision' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St14_Resetiosflags' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St5_Setw' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_Setbase' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwEERSt13basic_istreamIT_T0_ES6_St8_SetfillIS3_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStrsIwSt11char_traitsIwESaIwEERSt13basic_istreamIT_T0_ES7_RSbIS4_S5_T1_E' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZThn16_NSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSdD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSdD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSiD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSiD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSoD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSoD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt10istrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt10istrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt10ostrstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt10ostrstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_fstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ifstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt14basic_ofstreamIwSt11char_traitsIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt18basic_stringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_istringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIcSt11char_traitsIcESaIcEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt19basic_ostringstreamIwSt11char_traitsIwESaIwEED1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt9strstreamD0Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTv0_n24_NSt9strstreamD1Ev' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdaPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdaPvRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPv' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZdlPvRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znam' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnamRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Znwm' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZnwmRKSt9nothrow_t' version='GLIBCXX_3.4' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__atomic_flag_for_address' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__atomic_flag_wait_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_allocate_dependent_exception' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_allocate_exception' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_bad_cast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_bad_typeid' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_begin_catch' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_call_unexpected' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_current_exception_type' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_deleted_virtual' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_demangle' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_end_catch' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_free_dependent_exception' version='CXXABI_1.3.6' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_free_exception' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_get_exception_ptr' version='CXXABI_1.3.1' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_get_globals' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_get_globals_fast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_abort' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_acquire' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_guard_release' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_pure_virtual' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_rethrow' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_throw' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_tm_cleanup' version='CXXABI_TM_1' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_cctor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_cleanup' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_ctor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_delete2' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_delete3' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_delete' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_dtor' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_new2' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_new3' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__cxa_vec_new' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__dynamic_cast' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__gxx_personality_v0' version='CXXABI_1.3' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__once_proxy' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='atomic_flag_clear_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='atomic_flag_test_and_set_explicit' version='GLIBCXX_3.4.11' is-default-version='yes' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZGVNSt10moneypunctIcLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt10moneypunctIcLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt10moneypunctIwLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt10moneypunctIwLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt11__timepunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt11__timepunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7collateIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7collateIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8messagesIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8messagesIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8numpunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8numpunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4nposE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep11_S_max_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep11_S_terminalE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4_Rep20_S_empty_rep_storageE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs4nposE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10__num_base11_S_atoms_inE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10__num_base12_S_atoms_outE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5alnumE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5alphaE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5cntrlE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5digitE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5graphE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5lowerE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5printE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5punctE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5spaceE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base5upperE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10ctype_base6xdigitE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10money_base18_S_default_patternE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10money_base8_S_atomsE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIcLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt10moneypunctIwLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11__timepunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_1E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_2E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_3E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_4E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_5E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_6E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_7E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_8E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders2_9E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_10E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_11E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_12E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_13E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_14E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_15E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_16E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_17E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_18E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_19E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_20E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_21E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_22E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_23E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_24E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_25E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_26E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_27E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_28E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt12placeholders3_29E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE10has_denormE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE10is_boundedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE10is_integerE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE11round_styleE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE12has_infinityE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE12max_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE12min_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE14is_specializedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE14max_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE14min_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE5radixE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE5trapsE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE6digitsE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE8digits10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE8is_exactE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_iec559E' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_moduloE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_signedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE10has_denormE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE10is_boundedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE10is_integerE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE11round_styleE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE12has_infinityE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE12max_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE12min_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE14is_specializedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE14max_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE14min_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE5radixE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE5trapsE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE6digitsE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE8digits10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE8is_exactE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_iec559E' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_moduloE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_signedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsImE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE10has_denormE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE10is_boundedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE10is_integerE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE11round_styleE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE12has_infinityE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE12max_digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE12max_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE12min_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE14is_specializedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE14max_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE14min_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE5radixE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE5trapsE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE6digitsE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE8digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE8is_exactE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE9is_iec559E' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE9is_moduloE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsInE9is_signedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE10has_denormE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE10is_boundedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE10is_integerE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE11round_styleE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE12has_infinityE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE12max_digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE12max_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE12min_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE14is_specializedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE14max_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE14min_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE5radixE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE5trapsE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE6digitsE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE8digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE8is_exactE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_iec559E' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_moduloE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_signedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsItE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIcE12_S_timezonesE' size='112' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17__timepunct_cacheIwE12_S_timezonesE' size='112' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt21__numeric_limits_base9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt3tr18__detail12__prime_listE' size='2440' version='GLIBCXX_3.4.10' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcE10table_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt5ctypeIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6chrono12system_clock12is_monotonicE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale3allE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale4noneE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale4timeE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale5ctypeE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale7collateE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale7numericE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale8messagesE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt6locale8monetaryE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7collateIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8__detail12__prime_listE' size='2440' version='GLIBCXX_3.4.10' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base10floatfieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base10scientificE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base11adjustfieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base2inE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3appE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3ateE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3begE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3curE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3decE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3endE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3hexE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3octE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base3outE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base4leftE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base5fixedE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base5rightE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base5truncE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base6badbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base6binaryE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base6eofbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base6skipwsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7failbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7goodbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7showposE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base7unitbufE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base8internalE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base8showbaseE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base9basefieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base9boolalphaE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base9showpointE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8ios_base9uppercaseE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8messagesIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8numpunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10adopt_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10defer_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11__once_call' size='8' version='GLIBCXX_3.4.11' is-default-version='yes' type='tls-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt11try_to_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15__once_callable' size='8' version='GLIBCXX_3.4.11' is-default-version='yes' type='tls-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt15future_category' size='8' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt3cin' size='280' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4cerr' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4clog' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4cout' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4wcin' size='280' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt5wcerr' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt5wclog' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt5wcout' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt7nothrow' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDd' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDe' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDf' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDi' size='16' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDn' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIDs' size='16' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv115__forced_unwindE' size='16' version='CXXABI_1.3.2' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv116__enum_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv117__array_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv117__class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv117__pbase_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv119__foreign_exceptionE' size='16' version='CXXABI_1.3.2' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv119__pointer_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv120__function_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv120__si_class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv121__vmi_class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv123__fundamental_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN10__cxxabiv129__pointer_to_member_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt13__future_base11_State_baseE' size='16' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt13__future_base12_Result_baseE' size='16' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt13__future_base19_Async_state_commonE' size='24' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt6locale5facetE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTINSt8ios_base7failureE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDd' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDe' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDf' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDi' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPDs' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDd' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDe' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDf' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDi' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKDs' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKa' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKb' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKc' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKd' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKe' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKf' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKh' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKi' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKj' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKl' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKm' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKo' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKs' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKt' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKv' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKw' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKx' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPKy' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPa' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPb' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPc' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPd' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPe' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPf' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPh' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPi' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPj' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPl' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPm' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPo' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPs' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPt' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPv' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPw' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPx' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIPy' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISd' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISi' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISo' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10bad_typeid' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10ctype_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10istrstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10lock_error' size='24' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10money_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10moneypunctIcLb0EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10moneypunctIcLb1EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10moneypunctIwLb0EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10moneypunctIwLb1EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt10ostrstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11__timepunctIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11__timepunctIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11logic_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11range_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt11regex_error' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12bad_weak_ptr' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12codecvt_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12ctype_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12ctype_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12domain_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12future_error' size='24' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12length_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12out_of_range' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12strstreambuf' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt12system_error' size='24' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13bad_exception' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_filebufIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_filebufIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_fstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_fstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_istreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13basic_ostreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13messages_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt13runtime_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14basic_ifstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14basic_ifstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14basic_iostreamIwSt11char_traitsIwEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14basic_ofstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14basic_ofstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14codecvt_bynameIcc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14codecvt_bynameIwc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14collate_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14collate_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14error_category' size='16' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt14overflow_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15basic_streambufIcSt11char_traitsIcEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15basic_streambufIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15messages_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15messages_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15numpunct_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15numpunct_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt15underflow_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt16invalid_argument' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt16nested_exception' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17bad_function_call' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17moneypunct_bynameIcLb0EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17moneypunct_bynameIcLb1EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17moneypunct_bynameIwLb0EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt17moneypunct_bynameIwLb1EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt21__ctype_abstract_baseIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt21__ctype_abstract_baseIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5ctypeIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt5ctypeIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7codecvtIcc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7codecvtIwc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7collateIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7collateIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8bad_cast' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8ios_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8messagesIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8messagesIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8numpunctIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8numpunctIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9bad_alloc' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9basic_iosIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9basic_iosIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9exception' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9strstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9time_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTISt9type_info' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIa' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIb' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIc' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTId' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIe' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIf' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIh' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIi' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIj' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIl' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIm' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIn' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIo' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIs' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIt' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIv' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIw' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIx' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIy' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv116__enum_type_infoE' size='33' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv117__array_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv117__class_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv117__pbase_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv119__pointer_type_infoE' size='36' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv120__function_type_infoE' size='37' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv120__si_class_type_infoE' size='37' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv121__vmi_class_type_infoE' size='38' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv123__fundamental_type_infoE' size='40' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN10__cxxabiv129__pointer_to_member_type_infoE' size='46' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='54' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='54' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSNSt13__future_base19_Async_state_commonE' size='41' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSNSt6locale5facetE' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSNSt8ios_base7failureE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKa' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKb' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKc' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKd' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKe' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKf' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKh' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKi' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKj' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKl' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKm' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKs' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKt' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKv' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKw' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKx' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPKy' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPa' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPb' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPc' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPd' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPe' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPf' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPh' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPi' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPj' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPl' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPm' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPs' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPt' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPv' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPw' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPx' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSPy' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSd' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSi' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSo' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10bad_typeid' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10ctype_base' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10istrstream' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10lock_error' size='15' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10money_base' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10moneypunctIcLb0EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10moneypunctIcLb1EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10moneypunctIwLb0EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10moneypunctIwLb1EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt10ostrstream' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt11__timepunctIcE' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt11__timepunctIwE' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt11logic_error' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt11range_error' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12codecvt_base' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12ctype_bynameIcE' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12ctype_bynameIwE' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12domain_error' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12future_error' size='17' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12length_error' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12out_of_range' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12strstreambuf' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt12system_error' size='17' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13bad_exception' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_filebufIcSt11char_traitsIcEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_filebufIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_fstreamIcSt11char_traitsIcEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_fstreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_istreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13basic_ostreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13messages_base' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt13runtime_error' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14basic_ifstreamIcSt11char_traitsIcEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14basic_ifstreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14basic_iostreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14basic_ofstreamIcSt11char_traitsIcEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14basic_ofstreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14codecvt_bynameIcc11__mbstate_tE' size='36' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14codecvt_bynameIwc11__mbstate_tE' size='36' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14collate_bynameIcE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14collate_bynameIwE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14error_category' size='19' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt14overflow_error' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15basic_streambufIcSt11char_traitsIcEE' size='41' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15basic_streambufIwSt11char_traitsIwEE' size='41' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='46' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='46' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15messages_bynameIcE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15messages_bynameIwE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15numpunct_bynameIcE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15numpunct_bynameIwE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt15underflow_error' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt16invalid_argument' size='21' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17moneypunct_bynameIcLb0EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17moneypunct_bynameIcLb1EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17moneypunct_bynameIwLb0EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt17moneypunct_bynameIwLb1EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt21__ctype_abstract_baseIcE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt21__ctype_abstract_baseIwE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE' size='45' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE' size='45' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5ctypeIcE' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt5ctypeIwE' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7codecvtIcc11__mbstate_tE' size='28' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7codecvtIwc11__mbstate_tE' size='28' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7collateIcE' size='14' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7collateIwE' size='14' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8bad_cast' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8ios_base' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8messagesIcE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8messagesIwE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8numpunctIcE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8numpunctIwE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9bad_alloc' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9basic_iosIcSt11char_traitsIcEE' size='34' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9basic_iosIwSt11char_traitsIwEE' size='34' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9exception' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9strstream' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9time_base' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSSt9type_info' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSa' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSb' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSc' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSd' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSe' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSf' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSh' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSi' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSj' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSl' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSm' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSs' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSt' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSv' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSw' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSx' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSy' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSd' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSi' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSo' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt10istrstream' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt10ostrstream' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt13basic_fstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt13basic_fstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt13basic_istreamIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt13basic_ostreamIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt14basic_ifstreamIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt14basic_ifstreamIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt14basic_iostreamIwSt11char_traitsIwEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt14basic_ofstreamIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt14basic_ofstreamIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTTSt9strstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv116__enum_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv117__array_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv117__pbase_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv119__pointer_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv120__function_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv120__si_class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv123__fundamental_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN10__cxxabiv129__pointer_to_member_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt13__future_base11_State_baseE' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt13__future_base12_Result_baseE' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt13__future_base19_Async_state_commonE' size='40' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt6locale5facetE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVNSt8ios_base7failureE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSd' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSi' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSo' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10bad_typeid' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10istrstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10lock_error' size='40' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10moneypunctIcLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10moneypunctIcLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10moneypunctIwLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10moneypunctIwLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt10ostrstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt11__timepunctIcE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt11__timepunctIwE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt11logic_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt11range_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt11regex_error' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12bad_weak_ptr' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12ctype_bynameIcE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12ctype_bynameIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12domain_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12future_error' size='40' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12length_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12out_of_range' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12strstreambuf' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt12system_error' size='40' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13bad_exception' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_filebufIcSt11char_traitsIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_filebufIwSt11char_traitsIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_fstreamIcSt11char_traitsIcEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_fstreamIwSt11char_traitsIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_istreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13basic_ostreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt13runtime_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14basic_ifstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14basic_ifstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14basic_iostreamIwSt11char_traitsIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14basic_ofstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14basic_ofstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14codecvt_bynameIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14codecvt_bynameIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14collate_bynameIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14collate_bynameIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14error_category' size='72' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt14overflow_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15basic_streambufIcSt11char_traitsIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15basic_streambufIwSt11char_traitsIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15messages_bynameIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15messages_bynameIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15numpunct_bynameIcE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15numpunct_bynameIwE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt15underflow_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt16invalid_argument' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt16nested_exception' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt17bad_function_call' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt17moneypunct_bynameIcLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt17moneypunct_bynameIcLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt17moneypunct_bynameIwLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt17moneypunct_bynameIwLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt21__ctype_abstract_baseIcE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt21__ctype_abstract_baseIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt5ctypeIcE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt5ctypeIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7codecvtIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7codecvtIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7collateIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7collateIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8bad_cast' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8ios_base' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8messagesIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8messagesIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8numpunctIcE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8numpunctIwE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9bad_alloc' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9basic_iosIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9basic_iosIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9exception' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9strstream' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVSt9type_info' size='64' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt10moneypunctIcLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt10moneypunctIcLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt10moneypunctIwLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt10moneypunctIwLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt11__timepunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt11__timepunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7collateIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7collateIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8messagesIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8messagesIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8numpunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8numpunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_max_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep20_S_empty_rep_storageE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE4nposE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep11_S_max_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep11_S_terminalE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4_Rep20_S_empty_rep_storageE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs4nposE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10__num_base11_S_atoms_inE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10__num_base12_S_atoms_outE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5alnumE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5alphaE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5cntrlE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5digitE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5graphE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5lowerE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5printE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5punctE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5spaceE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base5upperE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10ctype_base6xdigitE' size='2' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10money_base18_S_default_patternE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10money_base8_S_atomsE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIcLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt10moneypunctIwLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11__timepunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_1E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_2E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_3E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_4E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_5E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_6E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_7E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_8E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders2_9E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_10E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_11E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_12E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_13E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_14E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_15E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_16E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_17E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_18E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_19E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_20E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_21E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_22E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_23E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_24E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_25E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_26E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_27E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_28E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt12placeholders3_29E' size='1' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE10has_denormE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE10is_boundedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE10is_integerE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE11round_styleE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE12has_infinityE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE12max_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE12min_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE14is_specializedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE14max_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE14min_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE5radixE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE5trapsE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE6digitsE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE8digits10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE8is_exactE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_iec559E' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_moduloE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDiE9is_signedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE10has_denormE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE10is_boundedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE10is_integerE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE11round_styleE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE12has_infinityE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE12max_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE12min_exponentE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE14is_specializedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE14max_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE14min_exponent10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE5radixE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE5trapsE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE6digitsE' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE8digits10E' size='4' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE8is_exactE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_iec559E' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_moduloE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIDsE9is_signedE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIaE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIbE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIcE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIdE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIeE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIfE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIhE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIiE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIjE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIlE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsImE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE10has_denormE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE10is_boundedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE10is_integerE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE11round_styleE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE12has_infinityE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE12max_digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE12max_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE12min_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE14is_specializedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE14max_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE14min_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE5radixE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE5trapsE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE6digitsE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE8digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE8is_exactE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE9is_iec559E' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE9is_moduloE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsInE9is_signedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE10has_denormE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE10is_boundedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE10is_integerE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE11round_styleE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE12has_infinityE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE12max_digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE12max_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE12min_exponentE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE14is_specializedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE14max_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE14min_exponent10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE15has_denorm_lossE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE15tinyness_beforeE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE5radixE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE5trapsE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE6digitsE' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE8digits10E' size='4' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE8is_exactE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_iec559E' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_moduloE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIoE9is_signedE' size='1' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIsE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsItE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIxE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIyE9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIcE12_S_timezonesE' size='112' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17__timepunct_cacheIwE12_S_timezonesE' size='112' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIcLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb0EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt17moneypunct_bynameIwLb1EE4intlE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base10has_denormE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base10is_boundedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base10is_integerE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base11round_styleE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base12has_infinityE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base12max_digits10E' size='4' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base12max_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base12min_exponentE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base13has_quiet_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base14is_specializedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base14max_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base14min_exponent10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base15has_denorm_lossE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base15tinyness_beforeE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base17has_signaling_NaNE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base5radixE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base5trapsE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base6digitsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base8digits10E' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base8is_exactE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base9is_iec559E' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base9is_moduloE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt21__numeric_limits_base9is_signedE' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt3tr18__detail12__prime_listE' size='2440' version='GLIBCXX_3.4.10' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcE10table_sizeE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt5ctypeIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6chrono12system_clock12is_monotonicE' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale3allE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale4noneE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale4timeE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale5ctypeE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale7collateE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale7numericE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale8messagesE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6locale8monetaryE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIcc11__mbstate_tE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7codecvtIwc11__mbstate_tE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7collateIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8__detail12__prime_listE' size='2440' version='GLIBCXX_3.4.10' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base10floatfieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base10scientificE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base11adjustfieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base2inE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3appE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3ateE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3begE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3curE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3decE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3endE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3hexE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3octE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base3outE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base4leftE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base5fixedE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base5rightE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base5truncE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base6badbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base6binaryE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base6eofbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base6skipwsE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7failbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7goodbitE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7showposE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base7unitbufE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base8internalE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base8showbaseE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base9basefieldE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base9boolalphaE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base9showpointE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8ios_base9uppercaseE' size='4' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8messagesIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIcE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8numpunctIwE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE' size='8' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10adopt_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10defer_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__once_call' size='8' version='GLIBCXX_3.4.11' is-default-version='yes' type='tls-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11try_to_lock' size='1' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15__once_callable' size='8' version='GLIBCXX_3.4.11' is-default-version='yes' type='tls-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt15future_category' size='8' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt3cin' size='280' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4cerr' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4clog' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4cout' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4wcin' size='280' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt5wcerr' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt5wclog' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt5wcout' size='272' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt7nothrow' size='1' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDd' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDe' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDf' size='16' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDi' size='16' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDn' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIDs' size='16' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv115__forced_unwindE' size='16' version='CXXABI_1.3.2' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv116__enum_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv117__array_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv117__class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv117__pbase_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv119__foreign_exceptionE' size='16' version='CXXABI_1.3.2' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv119__pointer_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv120__function_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv120__si_class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv121__vmi_class_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv123__fundamental_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN10__cxxabiv129__pointer_to_member_type_infoE' size='24' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt13__future_base11_State_baseE' size='16' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt13__future_base12_Result_baseE' size='16' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt13__future_base19_Async_state_commonE' size='24' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt6locale5facetE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTINSt8ios_base7failureE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDd' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDe' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDf' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDi' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPDs' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDd' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDe' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDf' size='32' version='CXXABI_1.3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDi' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKDs' size='32' version='CXXABI_1.3.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKa' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKb' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKc' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKd' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKe' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKf' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKh' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKi' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKj' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKl' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKm' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKo' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKs' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKt' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKv' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKw' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKx' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPKy' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPa' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPb' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPc' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPd' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPe' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPf' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPh' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPi' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPj' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPl' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPm' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPn' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPo' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPs' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPt' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPv' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPw' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPx' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIPy' size='32' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISd' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISi' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISo' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10bad_typeid' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10ctype_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10istrstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10lock_error' size='24' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10money_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10moneypunctIcLb0EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10moneypunctIcLb1EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10moneypunctIwLb0EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10moneypunctIwLb1EE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt10ostrstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11__timepunctIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11__timepunctIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11logic_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11range_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt11regex_error' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12bad_weak_ptr' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12codecvt_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12ctype_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12ctype_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12domain_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12future_error' size='24' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12length_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12out_of_range' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12strstreambuf' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt12system_error' size='24' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13bad_exception' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_filebufIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_filebufIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_fstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_fstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_istreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13basic_ostreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13messages_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt13runtime_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14basic_ifstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14basic_ifstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14basic_iostreamIwSt11char_traitsIwEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14basic_ofstreamIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14basic_ofstreamIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14codecvt_bynameIcc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14codecvt_bynameIwc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14collate_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14collate_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14error_category' size='16' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt14overflow_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15basic_streambufIcSt11char_traitsIcEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15basic_streambufIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15messages_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15messages_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15numpunct_bynameIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15numpunct_bynameIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt15underflow_error' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt16invalid_argument' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt16nested_exception' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17bad_function_call' size='24' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17moneypunct_bynameIcLb0EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17moneypunct_bynameIcLb1EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17moneypunct_bynameIwLb0EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt17moneypunct_bynameIwLb1EE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt21__ctype_abstract_baseIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt21__ctype_abstract_baseIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt23__codecvt_abstract_baseIcc11__mbstate_tE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt23__codecvt_abstract_baseIwc11__mbstate_tE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5ctypeIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt5ctypeIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7codecvtIcc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7codecvtIwc11__mbstate_tE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7collateIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7collateIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8bad_cast' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8ios_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8messagesIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8messagesIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8numpunctIcE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8numpunctIwE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9bad_alloc' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9basic_iosIcSt11char_traitsIcEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9basic_iosIwSt11char_traitsIwEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9exception' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9strstream' size='24' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9time_base' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTISt9type_info' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIa' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIb' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIc' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTId' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIe' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIf' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIh' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIi' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIj' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIl' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIm' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIn' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIo' size='16' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIs' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIt' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIv' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIw' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIx' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIy' size='16' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv116__enum_type_infoE' size='33' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv117__array_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv117__class_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv117__pbase_type_infoE' size='34' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv119__pointer_type_infoE' size='36' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv120__function_type_infoE' size='37' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv120__si_class_type_infoE' size='37' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv121__vmi_class_type_infoE' size='38' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv123__fundamental_type_infoE' size='40' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN10__cxxabiv129__pointer_to_member_type_infoE' size='46' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='54' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='54' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSNSt13__future_base19_Async_state_commonE' size='41' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSNSt6locale5facetE' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSNSt8ios_base7failureE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKa' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKb' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKc' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKd' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKe' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKf' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKh' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKi' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKj' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKl' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKm' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKs' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKt' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKv' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKw' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKx' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPKy' size='4' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPa' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPb' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPc' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPd' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPe' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPf' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPh' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPi' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPj' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPl' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPm' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPs' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPt' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPv' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPw' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPx' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSPy' size='3' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSd' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSi' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSo' size='3' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10bad_typeid' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10ctype_base' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10istrstream' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10lock_error' size='15' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10money_base' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10moneypunctIcLb0EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10moneypunctIcLb1EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10moneypunctIwLb0EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10moneypunctIwLb1EE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt10ostrstream' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt11__timepunctIcE' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt11__timepunctIwE' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt11logic_error' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt11range_error' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12codecvt_base' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12ctype_bynameIcE' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12ctype_bynameIwE' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12domain_error' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12future_error' size='17' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12length_error' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12out_of_range' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12strstreambuf' size='17' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt12system_error' size='17' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13bad_exception' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_filebufIcSt11char_traitsIcEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_filebufIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_fstreamIcSt11char_traitsIcEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_fstreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_istreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13basic_ostreamIwSt11char_traitsIwEE' size='39' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13messages_base' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt13runtime_error' size='18' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14basic_ifstreamIcSt11char_traitsIcEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14basic_ifstreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14basic_iostreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14basic_ofstreamIcSt11char_traitsIcEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14basic_ofstreamIwSt11char_traitsIwEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14codecvt_bynameIcc11__mbstate_tE' size='36' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14codecvt_bynameIwc11__mbstate_tE' size='36' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14collate_bynameIcE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14collate_bynameIwE' size='22' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14error_category' size='19' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt14overflow_error' size='19' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15basic_streambufIcSt11char_traitsIcEE' size='41' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15basic_streambufIwSt11char_traitsIwEE' size='41' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='46' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='46' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15messages_bynameIcE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15messages_bynameIwE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15numpunct_bynameIcE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15numpunct_bynameIwE' size='23' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='67' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt15underflow_error' size='20' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt16invalid_argument' size='21' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17moneypunct_bynameIcLb0EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17moneypunct_bynameIcLb1EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17moneypunct_bynameIwLb0EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt17moneypunct_bynameIwLb1EE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='49' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='50' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt21__ctype_abstract_baseIcE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt21__ctype_abstract_baseIwE' size='29' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt23__codecvt_abstract_baseIcc11__mbstate_tE' size='45' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt23__codecvt_abstract_baseIwc11__mbstate_tE' size='45' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5ctypeIcE' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt5ctypeIwE' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7codecvtIcc11__mbstate_tE' size='28' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7codecvtIwc11__mbstate_tE' size='28' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7collateIcE' size='14' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7collateIwE' size='14' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='58' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8bad_cast' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8ios_base' size='12' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8messagesIcE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8messagesIwE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8numpunctIcE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8numpunctIwE' size='15' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='59' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9bad_alloc' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9basic_iosIcSt11char_traitsIcEE' size='34' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9basic_iosIwSt11char_traitsIwEE' size='34' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9exception' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='60' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9strstream' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9time_base' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt9type_info' size='13' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSa' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSb' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSc' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSd' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSe' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSf' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSh' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSi' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSj' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSl' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSm' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSs' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSt' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSv' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSw' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSx' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSy' size='2' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSd' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSi' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSo' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt10istrstream' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt10ostrstream' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt13basic_fstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt13basic_fstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt13basic_istreamIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt13basic_ostreamIwSt11char_traitsIwEE' size='16' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt14basic_ifstreamIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt14basic_ifstreamIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt14basic_iostreamIwSt11char_traitsIwEE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt14basic_ofstreamIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt14basic_ofstreamIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTTSt9strstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv116__enum_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv117__array_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv117__class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv117__pbase_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv119__pointer_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv120__function_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv120__si_class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv121__vmi_class_type_infoE' size='88' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv123__fundamental_type_infoE' size='64' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN10__cxxabiv129__pointer_to_member_type_infoE' size='72' version='CXXABI_1.3' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt13__future_base11_State_baseE' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt13__future_base12_Result_baseE' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt13__future_base19_Async_state_commonE' size='40' version='GLIBCXX_3.4.17' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt6locale5facetE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt8ios_base7failureE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSd' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSi' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSo' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10bad_typeid' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10istrstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10lock_error' size='40' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10moneypunctIcLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10moneypunctIcLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10moneypunctIwLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10moneypunctIwLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt10ostrstream' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt11__timepunctIcE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt11__timepunctIwE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt11logic_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt11range_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt11regex_error' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12bad_weak_ptr' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12ctype_bynameIcE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12ctype_bynameIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12domain_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12future_error' size='40' version='GLIBCXX_3.4.14' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12length_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12out_of_range' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12strstreambuf' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt12system_error' size='40' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13bad_exception' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_filebufIcSt11char_traitsIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_filebufIwSt11char_traitsIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_fstreamIcSt11char_traitsIcEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_fstreamIwSt11char_traitsIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_istreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13basic_ostreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt13runtime_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14basic_ifstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14basic_ifstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14basic_iostreamIwSt11char_traitsIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14basic_ofstreamIcSt11char_traitsIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14basic_ofstreamIwSt11char_traitsIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14codecvt_bynameIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14codecvt_bynameIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14collate_bynameIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14collate_bynameIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14error_category' size='72' version='GLIBCXX_3.4.11' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt14overflow_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15basic_streambufIcSt11char_traitsIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15basic_streambufIwSt11char_traitsIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15basic_stringbufIcSt11char_traitsIcESaIcEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15basic_stringbufIwSt11char_traitsIwESaIwEE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15messages_bynameIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15messages_bynameIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15numpunct_bynameIcE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15numpunct_bynameIwE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt15underflow_error' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt16invalid_argument' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt16nested_exception' size='32' version='CXXABI_1.3.5' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt17bad_function_call' size='40' version='GLIBCXX_3.4.15' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt17moneypunct_bynameIcLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt17moneypunct_bynameIcLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt17moneypunct_bynameIwLb0EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt17moneypunct_bynameIwLb1EE' size='104' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt18basic_stringstreamIcSt11char_traitsIcESaIcEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt18basic_stringstreamIwSt11char_traitsIwESaIwEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt19basic_istringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt19basic_istringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt19basic_ostringstreamIwSt11char_traitsIwESaIwEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt21__ctype_abstract_baseIcE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt21__ctype_abstract_baseIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt23__codecvt_abstract_baseIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt23__codecvt_abstract_baseIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt5ctypeIcE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt5ctypeIwE' size='128' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7codecvtIcc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7codecvtIwc11__mbstate_tE' size='88' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7collateIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7collateIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='96' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8bad_cast' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8ios_base' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8messagesIcE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8messagesIwE' size='56' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8numpunctIcE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8numpunctIwE' size='72' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='80' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9bad_alloc' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9basic_iosIcSt11char_traitsIcEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9basic_iosIwSt11char_traitsIwEE' size='32' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9exception' size='40' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE' size='48' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9strstream' size='120' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt9type_info' size='64' version='GLIBCXX_3.4' is-default-version='yes' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/src/c++98/compatibility.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index ab8d0e874490bbb5fcbce30782496c1e0da8da1c..e1ff9d70b008629f3cb8f2091dca5b851f208fe8 100644 (file)
@@ -3,12 +3,12 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='__foo' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='__foo__' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='foo' type='func-type' binding='weak-binding' alias='foo__,__foo__,__foo' is-defined='yes'/>
-    <elf-symbol name='foo__' type='func-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='__foo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='__foo__' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='foo' type='func-type' binding='weak-binding' visibility='default-visibility' alias='foo__,__foo__,__foo' is-defined='yes'/>
+    <elf-symbol name='foo__' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test3.c' language='LANG_C89'>
     <type-decl name='void' id='type-id-1'/>
index 71eaf6382440813f5dfd4eee77c78a52150a9214..51cb207021c5b4fd52881b78075565be07a7d2b4 100644 (file)
@@ -3,7 +3,7 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='cpy' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='cpy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test4.c' language='LANG_C89'>
     <type-decl name='char' size-in-bits='8' id='type-id-1'/>
index b83fa83dc5f651380f2043aaa1839dce2b471632..1c62a3bf67c473b0d349efb4c962daf8dabb0e1a 100644 (file)
@@ -1,6 +1,6 @@
 <abi-corpus path='data/test-read-dwarf/test5.o'>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barPv' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barPv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test.cc' language='LANG_C_plus_plus'>
     <type-decl name='void' id='type-id-1'/>
index 840c38fa1d783df0d23ad7f535a4d357a9106b1a..fa50f1d21f5f2f5c64145b081d75b274323c1094 100644 (file)
@@ -6,15 +6,15 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z4blehv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN1B3fooEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z4blehv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN1B3fooEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZN1CIiE3barE' size='4' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
-    <elf-symbol name='_ZZN1B3fooEvE1a' size='4' type='object-type' binding='gnu-unique-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN1CIiE3barE' size='4' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN1B3fooEvE1a' size='4' type='object-type' binding='gnu-unique-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='test6.cc' language='LANG_C_plus_plus'>
     <class-decl name='B' size-in-bits='8' is-struct='yes' visibility='default' filepath='/home/skumari/Tasks/source_repo/dodji/libabigail/tests/data/test-read-dwarf/test6.cc' line='9' column='1' id='type-id-1'>
index d5c12f5717872d227dbf2de4432fb5d0714378bc..66290c6fa7ce4ed86eb35af945c9ded02573ea83 100644 (file)
@@ -1,6 +1,6 @@
 <abi-corpus path='data/test-read-dwarf/test7.so'>
   <elf-function-symbols>
-    <elf-symbol name='_Z3fooR1S' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3fooR1S' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test7.cc' language='LANG_C_plus_plus'>
     <type-decl name='int' size-in-bits='32' id='type-id-1'/>
index eb120f1522a1b063f56fbed649c793c9dc84fc8e..384838967c5a002ad989e900c3e3fc1e89530556 100644 (file)
@@ -6,9 +6,9 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZNK1S3fooEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZNK1S3fooEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test8-qualified-this-pointer.cc' language='LANG_C_plus_plus'>
     <class-decl name='S' size-in-bits='32' is-struct='yes' visibility='default' filepath='/home/dodji/git/libabigail/master/tests/data/test-read-dwarf/test8-qualified-this-pointer.cc' line='1' column='1' id='type-id-1'>
index 2f3a26241f717a83a5fad2fd0209cb1df85d104b..d9cf53713e093158ef349d281390827beb20e218 100644 (file)
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_ZN5boost10filesystem10is_symlinkENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC2ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11file_statusC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcRSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKwS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchERKNS0_15directory_entryERSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSbIwSt11char_traitsIwESaIwEERT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSsRT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchIcSsEEvRKPT_RT0_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12copy_symlinkERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12current_pathEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12status_knownENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12type_presentENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem12windows_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem13portable_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem14copy_directoryERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem14symlink_statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entry16replace_filenameERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entry6assignERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15directory_entryD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem15is_regular_fileENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18create_directoriesERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem18portable_file_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem19permissions_presentENS0_11file_statusE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem19portable_posix_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem22codecvt_error_categoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem23portable_directory_nameERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path11m_normalizeEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path15remove_filenameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path17replace_extensionERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_decrementERNS1_8iteratorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_incrementERNS1_8iteratorE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path27m_erase_redundant_separatorEm' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path28m_append_separator_if_neededEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path5imbueERKSt6locale' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path7codecvtEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iterator9decrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iterator9incrementEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2EPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2IPKcEET_S5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathC2ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSIPcEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathaSISsEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathdVEPKc' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem4pathdVERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail10equivalentERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail10remove_allERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11lex_compareENS0_4path8iteratorES3_S3_S3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11permissionsERKNS0_4pathENS0_5permsEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11resize_fileERKNS0_4pathEmPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail11unique_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12copy_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12initial_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail12read_symlinkERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail13dir_itr_closeERPvS3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14copy_directoryERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14create_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail14symlink_statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15hard_link_countERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathElPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail15system_completeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail16create_directoryERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail16create_hard_linkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18create_directoriesERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet15get_octet_countEh' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet20get_cont_octet_countEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail19temp_directory_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail24create_directory_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_constructERNS0_18directory_iteratorERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_incrementERNS0_18directory_iteratorEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail32possible_large_file_size_supportEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail4copyERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail5spaceERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6removeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6renameERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail6statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail8is_emptyERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9canonicalERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9copy_fileERKNS0_4pathES4_NS0_11copy_optionEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9file_sizeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6detail9mode_castENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6nativeERKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem6statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem8absoluteERKNS0_4pathES3_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystem9copy_fileERKNS0_4pathES3_NS0_11copy_optionERNS_6system10error_codeE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemanENS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemcoENS0_5permsE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemdvERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemeqERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemneERKNS0_4pathES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemoRERNS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10filesystemorENS0_5permsES1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE4swapERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetIS3_EEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE4swapERS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE5resetEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcEC2EPc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIcED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwEC2EPw' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost12scoped_arrayIwED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem16filesystem_error5m_impEEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem6detail11dir_itr_impEEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEppEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20checked_array_deleteIcEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20checked_array_deleteIwEEvPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem18directory_iteratorEEENT_9referenceERKS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem4path8iteratorEEENT_9referenceERKS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem18directory_iteratorES3_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem4path8iteratorES4_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9decrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem18directory_iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_count4swapERS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail12shared_countD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base12weak_releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base7destroyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_base7releaseEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE7disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC2EPS4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem16filesystem_error5m_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem6detail11dir_itr_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23atomic_exchange_and_addEPii' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRKNS_10filesystem4pathEPS4_E5applyES5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRNS_10filesystem15directory_entryEPS3_E5applyES4_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6detail26sp_enable_shared_from_thisEz' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code21unspecified_bool_trueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code5clearEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_code6assignEiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system10error_codeC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC2ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system12system_errorD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryC2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryD0Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system14error_categoryD2Ev' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boost6systemeqERKNS0_15error_conditionES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boosteqINS_10filesystem6detail11dir_itr_impES3_EEbRKNS_10shared_ptrIT_EERKNS4_IT0_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boostneINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN5boostneINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC2ERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem11file_status11permissionsEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem11file_status4typeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry12m_get_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry20m_get_symlink_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem15directory_entry4pathEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem16filesystem_error4whatEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator11dereferenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator5equalERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path11is_absoluteEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path11parent_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path13relative_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path14root_directoryEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path17m_parent_path_endEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path18has_root_directoryEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path3endEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path4stemEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5beginEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5c_strEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path5emptyEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path6nativeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path6stringEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7compareERKS1_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7wstringERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path7wstringEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8filenameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8iterator11dereferenceEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path8iterator5equalERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9extensionEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9root_nameEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem4path9root_pathEv' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet10do_unshiftER11__mbstate_tPcS5_RS5_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet11do_encodingEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet13do_max_lengthEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet16do_always_noconvEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet21invalid_leading_octetEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24get_cont_octet_out_countEw' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24invalid_continuing_octetEh' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet5do_inER11__mbstate_tPKcS6_RS6_PwS8_RS8_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet6do_outER11__mbstate_tPKwS6_RS6_PcS8_RS8_' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet9do_lengthER11__mbstate_tPKcS6_m' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost12scoped_arrayIcE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost12scoped_arrayIwE3getEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEptEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code5valueEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code7messageEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_code8categoryEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system10error_codecvPFvvEEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system12system_error4whatEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category10equivalentERKNS0_10error_codeEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category10equivalentEiRKNS0_15error_conditionE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_category23default_error_conditionEi' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK5boost6system14error_categoryeqERKS1_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEmiEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiEl' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE2inERS0_PKcS4_RS4_PwS6_RS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE3outERS0_PKwS4_RS4_PcS6_RS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs16_S_construct_auxIPKcEEPcT_S3_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs16_S_construct_auxIPcEES0_T_S1_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendIPKcEERSsT_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSs6appendIPcEERSsT_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE7compareEPKcS2_m' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt14numeric_limitsIwE3maxEv' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt10__distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt19__iterator_categoryIPcENSt15iterator_traitsIT_E17iterator_categoryERKS2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem16filesystem_error5m_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem6detail11dir_itr_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5boost10filesystem16filesystem_error5m_impEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt4swapIPN5boost10filesystem6detail11dir_itr_impEEvRT_S6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSt8distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcEN9__gnu_cxx11__enable_ifIXsr9__is_charIT_EE7__valueEbE6__typeERKSbIS2_St11char_traitsIS2_ESaIS2_EESA_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcEbRKSaIT_ES3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStneIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem10is_symlinkENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC2ENS0_9file_typeENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11file_statusC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcRSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits7convertEPKwS3_RSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchERKNS0_15directory_entryERSsRKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSbIwSt11char_traitsIwESaIwEERT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchISsEEvRKSsRT_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem11path_traits8dispatchIcSsEEvRKPT_RT0_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12copy_symlinkERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12current_pathEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12is_directoryERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12status_knownENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12type_presentENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem12windows_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem13portable_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem14copy_directoryERKNS0_4pathES3_RNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem14symlink_statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entry16replace_filenameERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entry6assignERKNS0_4pathENS0_11file_statusES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem15is_regular_fileENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_error5m_impD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathENS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorC2ERKSsRKNS0_4pathES6_NS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem16filesystem_errorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18create_directoriesERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iterator9incrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18directory_iteratorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem18portable_file_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem19permissions_presentENS0_11file_statusE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem19portable_posix_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem22codecvt_error_categoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem23portable_directory_nameERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path11m_normalizeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path15remove_filenameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path17replace_extensionERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_decrementERNS1_8iteratorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path25m_path_iterator_incrementERNS1_8iteratorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path27m_erase_redundant_separatorEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path28m_append_separator_if_neededEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path5imbueERKSt6locale' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path6assignIPcEERS1_T_S5_RKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path7codecvtEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iterator9decrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iterator9incrementEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4path8iteratorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2IPKcEET_S5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathC2ISbIwSt11char_traitsIwESaIwEEEERKT_PNS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIS7_E4typeEEEvE4typeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSIPcEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathaSISsEENS_9enable_ifINS0_11path_traits11is_pathableINS_5decayIT_E4typeEEERS1_E4typeERKS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathdVEPKc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem4pathdVERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail10equivalentERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail10remove_allERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11lex_compareENS0_4path8iteratorES3_S3_S3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11permissionsERKNS0_4pathENS0_5permsEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11resize_fileERKNS0_4pathEmPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail11unique_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12copy_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12current_pathERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12initial_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail12read_symlinkERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail13dir_itr_closeERPvS3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14copy_directoryERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14create_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail14symlink_statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15hard_link_countERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15last_write_timeERKNS0_4pathElPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail15system_completeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail16create_directoryERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail16create_hard_linkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18create_directoriesERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet15get_octet_countEh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facet20get_cont_octet_countEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail18utf8_codecvt_facetD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail19temp_directory_pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail24create_directory_symlinkERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_constructERNS0_18directory_iteratorERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail28directory_iterator_incrementERNS0_18directory_iteratorEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail32possible_large_file_size_supportEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail4copyERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail5spaceERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6removeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6renameERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail6statusERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail8is_emptyERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9canonicalERKNS0_4pathES4_PNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9copy_fileERKNS0_4pathES4_NS0_11copy_optionEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9file_sizeERKNS0_4pathEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6detail9mode_castENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6nativeERKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem6statusERKNS0_4pathERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem8absoluteERKNS0_4pathES3_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystem9copy_fileERKNS0_4pathES3_NS0_11copy_optionERNS_6system10error_codeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemanENS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemcoENS0_5permsE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemdvERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemeqERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemneERKNS0_4pathES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemoRERNS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10filesystemorENS0_5permsES1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE4swapERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE5resetIS3_EEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE4swapERS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE5resetEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2IS3_EEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcEC2EPc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIcED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwEC2EPw' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost12scoped_arrayIwED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem16filesystem_error5m_impEEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost14checked_deleteINS_10filesystem6detail11dir_itr_impEEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEmmEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEppEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20checked_array_deleteIcEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20checked_array_deleteIwEEvPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem18directory_iteratorEEENT_9referenceERKS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access11dereferenceINS_10filesystem4path8iteratorEEENT_9referenceERKS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem18directory_iteratorES3_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access5equalINS_10filesystem4path8iteratorES4_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9decrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem18directory_iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost20iterator_core_access9incrementINS_10filesystem4path8iteratorEEEvRT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_count4swapERS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem16filesystem_error5m_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail12shared_countD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base12weak_releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base7destroyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_base7releaseEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail15sp_counted_baseD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEE7disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEC2EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC2EPS4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem16filesystem_error5m_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail20sp_pointer_constructINS_10filesystem6detail11dir_itr_impES4_EEvPNS_10shared_ptrIT_EEPT0_RNS0_12shared_countE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23atomic_exchange_and_addEPii' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRKNS_10filesystem4pathEPS4_E5applyES5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail23operator_arrow_dispatchIRNS_10filesystem15directory_entryEPS3_E5applyES4_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6detail26sp_enable_shared_from_thisEz' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code21unspecified_bool_trueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code5clearEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_code6assignEiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system10error_codeC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC2ENS0_10error_codeERKSs' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorC2EiRKNS0_14error_categoryEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system12system_errorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryD0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system14error_categoryD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6system15error_conditionC2EiRKNS0_14error_categoryE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boost6systemeqERKNS0_15error_conditionES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boosteqINS_10filesystem6detail11dir_itr_impES3_EEbRKNS_10shared_ptrIT_EERKNS4_IT0_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boostneINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lS2_S3_S4_S5_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS6_12always_bool2ES8_S9_E4typeEE4typeERKNS_15iterator_facadeIS8_T0_T1_T2_T3_EERKNSH_IS9_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5boostneINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lS3_S4_S5_S6_lEENS_6detail23enable_if_interoperableIT_T4_NS_3mpl6apply2INS7_12always_bool2ES9_SA_E4typeEE4typeERKNS_15iterator_facadeIS9_T0_T1_T2_T3_EERKNSI_ISA_T5_T6_T7_T8_EE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPKcSsEC2ERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN9__gnu_cxx17__normal_iteratorIPcSsEC2ERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem11file_status11permissionsEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem11file_status4typeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry12m_get_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry20m_get_symlink_statusEPNS_6system10error_codeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem15directory_entry4pathEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem16filesystem_error4whatEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator11dereferenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem18directory_iterator5equalERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path11is_absoluteEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path11parent_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path13relative_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path14root_directoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path17m_parent_path_endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path18has_root_directoryEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path3endEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path4stemEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5beginEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5c_strEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path5emptyEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path6nativeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path6stringEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7compareERKS1_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7wstringERKSt7codecvtIwc11__mbstate_tE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path7wstringEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8filenameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8iterator11dereferenceEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path8iterator5equalERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9extensionEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9root_nameEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem4path9root_pathEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet10do_unshiftER11__mbstate_tPcS5_RS5_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet11do_encodingEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet13do_max_lengthEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet16do_always_noconvEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet21invalid_leading_octetEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24get_cont_octet_out_countEw' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet24invalid_continuing_octetEh' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet5do_inER11__mbstate_tPKcS6_RS6_PwS8_RS8_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet6do_outER11__mbstate_tPKwS6_RS6_PcS8_RS8_' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10filesystem6detail18utf8_codecvt_facet9do_lengthER11__mbstate_tPKcS6_m' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem16filesystem_error5m_impEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost12scoped_arrayIcE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost12scoped_arrayIwE3getEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem18directory_iteratorENS1_15directory_entryENS_25single_pass_traversal_tagERS3_lEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lE7derivedEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost15iterator_facadeINS_10filesystem4path8iteratorEKS2_NS_27bidirectional_traversal_tagERS4_lEptEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code5valueEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code7messageEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_code8categoryEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system10error_codecvPFvvEEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system12system_error4whatEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category10equivalentERKNS0_10error_codeEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category10equivalentEiRKNS0_15error_conditionE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_category23default_error_conditionEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5boost6system14error_categoryeqERKS1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKcSsEmiEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPKwSbIwSt11char_traitsIwESaIwEEEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEdeEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK9__gnu_cxx17__normal_iteratorIPcSsEmiEl' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE2inERS0_PKcS4_RS4_PwS6_RS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNKSt23__codecvt_abstract_baseIwc11__mbstate_tE3outERS0_PKwS4_RS4_PcS6_RS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs16_S_construct_auxIPKcEEPcT_S3_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs16_S_construct_auxIPcEES0_T_S1_RKSaIcESt12__false_type' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendIPKcEERSsT_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSs6appendIPcEERSsT_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPKcEET_S2_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSsC2IPcEET_S1_RKSaIcE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE7compareEPKcS2_m' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt14numeric_limitsIwE3maxEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt10__distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt19__iterator_categoryIPcENSt15iterator_traitsIT_E17iterator_categoryERKS2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem16filesystem_error5m_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4moveIRPN5boost10filesystem6detail11dir_itr_impEEONSt16remove_referenceIT_E4typeEOS7_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5boost10filesystem16filesystem_error5m_impEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt4swapIPN5boost10filesystem6detail11dir_itr_impEEvRT_S6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt8distanceIPcENSt15iterator_traitsIT_E15difference_typeES2_S2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcEN9__gnu_cxx11__enable_ifIXsr9__is_charIT_EE7__valueEbE6__typeERKSbIS2_St11char_traitsIS2_ESaIS2_EESA_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcEbRKSaIT_ES3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStneIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='_ZTIN5boost10filesystem16filesystem_errorE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost10filesystem6detail18utf8_codecvt_facetE' size='24' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost12noncopyable_11noncopyableE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail15sp_counted_baseE' size='16' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6system12system_errorE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTIN5boost6system14error_categoryE' size='24' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost10filesystem16filesystem_errorE' size='39' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost10filesystem6detail18utf8_codecvt_facetE' size='48' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost12noncopyable_11noncopyableE' size='36' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail15sp_counted_baseE' size='33' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='77' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='73' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6system12system_errorE' size='30' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTSN5boost6system14error_categoryE' size='32' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost10filesystem16filesystem_errorE' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost10filesystem6detail18utf8_codecvt_facetE' size='88' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail15sp_counted_baseE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='64' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6system12system_errorE' size='40' type='object-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZTVN5boost6system14error_categoryE' size='72' type='object-type' binding='weak-binding' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost10filesystem16filesystem_errorE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost10filesystem6detail18utf8_codecvt_facetE' size='24' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost12noncopyable_11noncopyableE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail15sp_counted_baseE' size='16' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6system12system_errorE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTIN5boost6system14error_categoryE' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost10filesystem16filesystem_errorE' size='39' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost10filesystem6detail18utf8_codecvt_facetE' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost12noncopyable_11noncopyableE' size='36' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail15sp_counted_baseE' size='33' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='77' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='73' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6system12system_errorE' size='30' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSN5boost6system14error_categoryE' size='32' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost10filesystem16filesystem_errorE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost10filesystem6detail18utf8_codecvt_facetE' size='88' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail15sp_counted_baseE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem16filesystem_error5m_impEEE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEE' size='64' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6system12system_errorE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVN5boost6system14error_categoryE' size='72' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/codecvt_error_category.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='boost'>
index ec2cf2d86a4f3885f1be568bf46d6c51d087a91f..f1d62599d740569b8f9fcc04ec005677f93076c5 100644 (file)
@@ -1,8 +1,8 @@
 <abi-corpus path='libtest-v0.so'>
   <elf-function-symbols>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='foo' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='foo' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test-v0.c'>
     <class-decl name='public_type' size-in-bits='64' is-struct='yes' visibility='default' filepath='/home/dodji/tests/test-interfaces-v0.h' line='2' column='1' id='type-id-1'>
index 792fd4e1760a049819db7749b133ab89121a8498..9e52a40e4a94e1324d127106e9b99817eef22731 100644 (file)
@@ -1,10 +1,10 @@
 <abi-corpus path='repr7' architecture='elf-amd-x86_64'>
   <elf-function-symbols>
-    <elf-symbol name='_Z2fni' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z2fni' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <elf-variable-symbols>
-    <elf-symbol name='fnptr0' type='object-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='fnptr1' type='object-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='fnptr0' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='fnptr1' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../../repr7.cc' language='LANG_C_plus_plus'>
     <type-decl name='void' id='type-id-1'/>
index 0a8c6ceb406bb135c38f6d2e4b91c521f442a3e5..d79899de77ed0209e752ebd44ae893df9d0f3fbb 100644 (file)
@@ -4,12 +4,12 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
index 1b6299e198ababd4102831b8ebca8dde03a705c8..b363e07df4bb31559ca1dbe33e7ac3370ef1f24b 100644 (file)
@@ -4,12 +4,12 @@
     <dependency name='libc.so.6'/>
   </elf-needed>
   <elf-function-symbols>
-    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' is-defined='yes'/>
-    <elf-symbol name='_fini' type='func-type' binding='global-binding' is-defined='yes'/>
-    <elf-symbol name='_init' type='func-type' binding='global-binding' is-defined='yes'/>
+    <elf-symbol name='_Z3barRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_Z3fooRKSs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt11char_traitsIcE6lengthEPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test24-drop-fns.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>