Bug 22122 - Fail to represent 'const array'
authorDodji Seketeli <dodji@redhat.com>
Mon, 11 Sep 2017 15:23:43 +0000 (17:23 +0200)
committerDodji Seketeli <dodji@redhat.com>
Mon, 11 Sep 2017 16:07:02 +0000 (18:07 +0200)
When computing canonical DIEs, the DWARF reader mistakenly represents
'array of const' and 'const array' the same.

This patch fixes that.

* src/abg-dwarf-reader.cc (die_is_array_type): Define new static
function.
(die_is_pointer_or_reference_type): Also test that the DIE can be
an array.
* tests/data/test-read-dwarf/PR22122-libftdc.so: New binary test input.
* tests/data/test-read-dwarf/PR22122-libftdc.so.abi: New reference output.
* tests/data/Makefile.am: Add the two new test files above to
source distribution.
* tests/test-read-dwarf.cc (in_out_specs): Run this test harness
over the new test input.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
src/abg-dwarf-reader.cc
tests/data/Makefile.am
tests/data/test-read-dwarf/PR22122-libftdc.so [new file with mode: 0644]
tests/data/test-read-dwarf/PR22122-libftdc.so.abi [new file with mode: 0644]
tests/test-read-dwarf.cc

index 7b4ab2b..f786006 100644 (file)
@@ -8629,14 +8629,34 @@ die_is_reference_type(Dwarf_Die* die)
   return false;
 }
 
-/// Test if a DIE represents a pointer or reference type.
+/// Test if a DIE represents an array type.
+///
+/// @param die the die to consider.
+///
+/// @return true iff @p die represents an array type.
+static bool
+die_is_array_type(Dwarf_Die* die)
+{
+  if (!die)
+    return false;
+
+  int tag = dwarf_tag(die);
+  if (tag == DW_TAG_array_type)
+    return true;
+
+  return false;
+}
+
+/// Test if a DIE represents a pointer, reference or array type.
 ///
 /// @param die the die to consider.
 ///
 /// @return true iff @p die represents a pointer or reference type.
 static bool
 die_is_pointer_or_reference_type(Dwarf_Die* die)
-{return (die_is_pointer_type(die) || die_is_reference_type(die));}
+{return (die_is_pointer_type(die)
+        || die_is_reference_type(die)
+        || die_is_array_type(die));}
 
 /// Test if a DIE represents a class type.
 ///
index 54f542c..0cf149a 100644 (file)
@@ -376,6 +376,8 @@ test-read-dwarf/test24-drop-fns-0.suppr \
 test-read-dwarf/test24-drop-fns.cc \
 test-read-dwarf/PR22015-libboost_iostreams.so \
 test-read-dwarf/PR22015-libboost_iostreams.so.abi \
+test-read-dwarf/PR22122-libftdc.so \
+test-read-dwarf/PR22122-libftdc.so.abi \
 \
 test-annotate/test0.abi                        \
 test-annotate/test1.abi                        \
diff --git a/tests/data/test-read-dwarf/PR22122-libftdc.so b/tests/data/test-read-dwarf/PR22122-libftdc.so
new file mode 100644 (file)
index 0000000..af4983f
Binary files /dev/null and b/tests/data/test-read-dwarf/PR22122-libftdc.so differ
diff --git a/tests/data/test-read-dwarf/PR22122-libftdc.so.abi b/tests/data/test-read-dwarf/PR22122-libftdc.so.abi
new file mode 100644 (file)
index 0000000..a5a247d
--- /dev/null
@@ -0,0 +1,7551 @@
+<abi-corpus path='data/test-read-dwarf/PR22122-libftdc.so'>
+  <elf-needed>
+    <dependency name='build/cached/third_party/s2/libs2.so'/>
+    <dependency name='build/cached/third_party/s2/util/math/libmath.so'/>
+    <dependency name='build/cached/third_party/s2/util/coding/libcoding.so'/>
+    <dependency name='build/cached/third_party/s2/strings/libstrings.so'/>
+    <dependency name='build/cached/third_party/s2/base/libbase.so'/>
+    <dependency name='build/cached/mongo/db/libservice_context.so'/>
+    <dependency name='build/cached/mongo/util/libperiodic_runner.so'/>
+    <dependency name='build/cached/mongo/util/libfail_point.so'/>
+    <dependency name='build/cached/mongo/util/libclock_sources.so'/>
+    <dependency name='build/cached/mongo/util/concurrency/libspin_lock.so'/>
+    <dependency name='build/cached/mongo/transport/libtransport_layer_common.so'/>
+    <dependency name='build/cached/mongo/util/net/libnetwork.so'/>
+    <dependency name='build/cached/mongo/util/concurrency/libticketholder.so'/>
+    <dependency name='build/cached/mongo/db/auth/libauth_rolename.so'/>
+    <dependency name='build/cached/mongo/transport/libmessage_compressor.so'/>
+    <dependency name='build/cached/third_party/libshim_zlib.so'/>
+    <dependency name='build/cached/third_party/zlib-1.2.8/libzlib.so'/>
+    <dependency name='build/cached/third_party/libshim_snappy.so'/>
+    <dependency name='build/cached/third_party/snappy-1.1.3/libsnappy.so'/>
+    <dependency name='build/cached/mongo/util/options_parser/liboptions_parser.so'/>
+    <dependency name='build/cached/third_party/libshim_yaml.so'/>
+    <dependency name='build/cached/third_party/yaml-cpp-0.5.3/libyaml.so'/>
+    <dependency name='build/cached/mongo/db/liblogical_session_id.so'/>
+    <dependency name='build/cached/mongo/util/libuuid.so'/>
+    <dependency name='build/cached/mongo/util/libdecorable.so'/>
+    <dependency name='build/cached/mongo/idl/libidl_parser.so'/>
+    <dependency name='build/cached/mongo/db/libserver_parameters.so'/>
+    <dependency name='build/cached/mongo/crypto/libsha_block_openssl.so'/>
+    <dependency name='build/cached/mongo/crypto/libsha1_block.so'/>
+    <dependency name='build/cached/mongo/crypto/libsha256_block.so'/>
+    <dependency name='build/cached/mongo/util/libsecure_compare_memory.so'/>
+    <dependency name='build/cached/mongo/db/libserver_options_core.so'/>
+    <dependency name='build/cached/mongo/bson/util/libbson_extract.so'/>
+    <dependency name='build/cached/mongo/libbase.so'/>
+    <dependency name='build/cached/third_party/murmurhash3/libmurmurhash3.so'/>
+    <dependency name='build/cached/third_party/libshim_tz.so'/>
+    <dependency name='build/cached/third_party/libshim_pcrecpp.so'/>
+    <dependency name='build/cached/third_party/pcre-8.41/libpcrecpp.so'/>
+    <dependency name='build/cached/third_party/libshim_intel_decimal128.so'/>
+    <dependency name='build/cached/third_party/IntelRDFPMathLib20U1/libintel_decimal128.so'/>
+    <dependency name='build/cached/third_party/libshim_boost.so'/>
+    <dependency name='build/cached/third_party/boost-1.60.0/libboost_program_options.so'/>
+    <dependency name='build/cached/third_party/boost-1.60.0/libboost_iostreams.so'/>
+    <dependency name='build/cached/third_party/boost-1.60.0/libboost_filesystem.so'/>
+    <dependency name='build/cached/third_party/boost-1.60.0/libboost_system.so'/>
+    <dependency name='build/cached/mongo/util/libquick_exit.so'/>
+    <dependency name='build/cached/third_party/libshim_allocator.so'/>
+    <dependency name='build/cached/third_party/gperftools-2.5/libtcmalloc_minimal.so'/>
+    <dependency name='build/cached/mongo/util/libdebugger.so'/>
+    <dependency name='libm.so.6'/>
+    <dependency name='libssl.so.1.0.0'/>
+    <dependency name='libcrypto.so.1.0.0'/>
+    <dependency name='librt.so.1'/>
+    <dependency name='libdl.so.2'/>
+    <dependency name='libatomic.so.1'/>
+    <dependency name='libstdc++.so.6'/>
+    <dependency name='libgcc_s.so.1'/>
+    <dependency name='libpthread.so.0'/>
+    <dependency name='libc.so.6'/>
+  </elf-needed>
+  <elf-function-symbols>
+    <elf-symbol name='_ZN5boost10filesystem15directory_entryC2ERKS1_' 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='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' 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='_ZN5boost10filesystemdvERKNS0_4pathES3_' 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='_ZN5boost6detail15sp_counted_base7destroyEv' 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_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_impEED0Ev' 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='_ZN5mongo10StringDataC2EPKc' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DataBuilder15writeAndAdvanceINS_10FTDCVarIntEEENS_6StatusERKT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11DataBuilder6resizeEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE15grow_reallocateEi' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEEC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil17getBSONDocumentIdERKNS_7BSONObjE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil19getBSONDocumentTypeERKNS_7BSONObjE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil23getMetricsFromMetricDocERKNS_7BSONObjEPNS_16FTDCDecompressorE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil26createBSONMetadataDocumentERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil26extractMetricsFromDocumentERKNS_7BSONObjES3_PSt6vectorImSaImEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil28constructDocumentFromMetricsERKNS_7BSONObjERKSt6vectorImSaImEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil29createBSONMetricChunkDocumentENS_14ConstDataRangeENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12FTDCBSONUtil30getBSONDocumentFromMetadataDocERKNS_7BSONObjE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder11subobjStartENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder12appendObjectENS_10StringDataEPKci' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder13appendBinDataENS_10StringDataEiNS_11BinDataTypeEPKv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder13subarrayStartENS_10StringDataE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder3objEv' 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_10StringDataEb' 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='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEx' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilder6appendERKNS_11BSONElementE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderC2ERNS_11_BufBuilderINS_21SharedBufferAllocatorEEE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderC2Ei' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14BSONObjBuilderD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressor20getCompressedSamplesEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressor5resetEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressor6_resetERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressor9addSampleERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressorC2EPKNS_10FTDCConfigE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCCompressorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController10setEnabledEb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController12setDirectoryERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController19setMaxFileSizeBytesEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController20addOnRotateCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController20addPeriodicCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController24setMaxDirectorySizeBytesEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController29getMostRecentPeriodicDocumentEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController34setMaxSamplesPerArchiveMetricChunkEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController34setMaxSamplesPerInterimMetricChunkEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController4stopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController5startEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController6doLoopEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCController9setPeriodENS_8DurationISt5ratioILl1ELl1000EEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReader12readDocumentEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReader4nextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReader4openERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReader7hasNextEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReaderC2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReaderD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileReaderD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo14FTDCFileReaderD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter11writeSampleERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter13writeMetadataERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter22writeArchiveFileBufferENS_14ConstDataRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter22writeInterimFileBufferENS_14ConstDataRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter24closeWithoutFlushForTestEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter4openERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter5closeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriter5flushERKN5boost8optionalINS_14ConstDataRangeEEENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriterC2EPKNS_10FTDCConfigE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriterD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14FTDCFileWriterD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo14FTDCFileWriterD1Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15BlockCompressor10uncompressENS_14ConstDataRangeEm' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15BlockCompressor8compressENS_14ConstDataRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager13scanDirectoryEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager13trimDirectoryERSt6vectorIN5boost10filesystem4pathESaIS4_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager15openArchiveFileEPNS_6ClientERKN5boost10filesystem4pathERKSt6vectorISt5tupleIJNS_12FTDCBSONUtil8FTDCTypeENS_7BSONObjENS_6Date_tEEESaISE_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager18recoverInterimFileEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager23generateArchiveFileNameERKN5boost10filesystem4pathENS_10StringDataE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager28writeSampleAndRotateIfNeededEPNS_6ClientERKNS_7BSONObjENS_6Date_tE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager5closeEv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager6createEPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionEPNS_6ClientE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManager6rotateEPNS_6ClientE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManagerC1EPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManagerC2EPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionE' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo15FTDCFileManagerC1EPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionE' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManagerD1Ev' type='func-type' binding='global-binding' visibility='default-visibility' alias='_ZN5mongo15FTDCFileManagerD2Ev' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo15FTDCFileManagerD2Ev' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16FTDCDecompressor10uncompressENS_14ConstDataRangeE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16FTDCDecompressorD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIiEERS2_T_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIxEERS2_T_i' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23FTDCCollectorCollection3addESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo23FTDCCollectorCollection7collectEPNS_6ClientE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo25BSONObjBuilderValueStreamD2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo6logger16LogstreamBuilderlsINS_6StatusEEERS1_RKT_' 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='_ZN5mongo8DataType7HandlerINS_10FTDCVarIntEvE4loadEPS2_PKcmPml' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_10FTDCVarIntEvE5storeERKS2_PcmPml' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_7BSONObjEvE4loadEPS2_PKcmPml' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8DataType7HandlerINS_9ValidatedINS_7BSONObjEEEvE4loadEPS4_PKcmPml' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8FTDCUtil13getMongoSPathERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8FTDCUtil14getInterimFileERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8FTDCUtil18getInterimTempFileERKN5boost10filesystem4pathE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo8FTDCUtil9roundTimeENS_6Date_tENS_8DurationISt5ratioILl1ELl1000EEEE' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11BSONElement10numberLongEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo11BSONElement3chkENS_8BSONTypeE' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNK5mongo14ConstDataRange4readINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_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_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_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_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_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_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EED2Ev' 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='_ZNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEE6_M_runEv' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEED0Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6threadC2ISt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS4_EEJEEEOT_DpOT0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE19_M_emplace_back_auxIJS2_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJRS1_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE7reserveEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEaSERKS3_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS2_EESaIS5_EE19_M_emplace_back_auxIJS5_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE19_M_emplace_back_auxIJS6_EEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIcSaIcEE17_M_default_appendEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIcSaIcEED2Ev' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorIhSaIhEE17_M_default_appendEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorImSaImEE17_M_default_appendEm' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJbEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJjEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJxEEEvDpOT_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElS4_NS0_5__ops15_Iter_less_iterEEvT_T0_SD_T1_T2_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_less_iterEEvT_SC_T0_T1_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_SC_SC_T0_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_less_iterEEvT_T0_' 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='_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN5mongo14BSONObjBuilder3objEvENKUlvE_clEv' 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='_ZN5mongo10FTDCConfig20kPeriodMillisDefaultE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo12kFTDCIdFieldE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo13kFTDCDocFieldE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14kFTDCDataFieldE' size='5' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14kFTDCDocsFieldE' size='5' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo14kFTDCTypeFieldE' size='5' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16kFTDCArchiveFileE' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo16kFTDCInterimFileE' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo20kFTDCCollectEndFieldE' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZN5mongo22kFTDCCollectStartFieldE' size='6' type='object-type' binding='global-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_10filesystem6detail11dir_itr_impEEE' size='24' type='object-type' binding='weak-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='_ZTINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEEE' size='24' 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='_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='_ZTISt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE' size='24' 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_10filesystem6detail11dir_itr_impEEE' size='73' type='object-type' binding='weak-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='_ZTSNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEEE' size='98' 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='_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='_ZTSSt19_Sp_make_shared_tag' size='24' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTSSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE' size='163' 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='_ZTVNSt6thread10_Impl_baseE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEEE' size='40' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZTVSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE' size='56' type='object-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
+    <elf-symbol name='_ZZN5mongo11BSONElementC1EvE11kEooElement' size='2' 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/ftdc/block_compressor.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+    <namespace-decl name='std'>
+      <namespace-decl name='__cxx11'>
+        <class-decl name='basic_stringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='3136' visibility='default' is-declaration-only='yes' id='type-id-1'>
+          <member-type access='private'>
+            <typedef-decl name='__string_type' type-id='type-id-3' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/sstream' line='669' column='1' id='type-id-2'/>
+          </member-type>
+          <member-function access='public'>
+            <function-decl name='str' mangled-name='_ZNKSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEE3strEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/sstream' line='765' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-4' is-artificial='yes'/>
+              <return type-id='type-id-2'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public' destructor='yes' vtable-offset='0'>
+            <function-decl name='~basic_stringstream' mangled-name='_ZNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/sstream' line='717' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-5' is-artificial='yes'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+        </class-decl>
+        <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='256' visibility='default' is-declaration-only='yes' id='type-id-3'>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <typedef-decl name='size_type' type-id='type-id-10' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='82' column='1' id='type-id-9'/>
+          </member-type>
+          <member-type access='private'>
+            <typedef-decl name='pointer' type-id='type-id-12' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='86' column='1' id='type-id-11'/>
+          </member-type>
+          <member-type access='private'>
+            <typedef-decl name='const_pointer' type-id='type-id-14' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='87' column='1' id='type-id-13'/>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-type access='private'>
+            <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-7'>
+              <underlying-type type-id='type-id-8'/>
+            </enum-decl>
+          </member-type>
+          <member-function access='private'>
+            <function-decl name='_M_data' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-11'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='c_str' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1887' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-16'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_is_local' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_is_localEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-17'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_dispose' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public' destructor='yes'>
+            <function-decl name='~basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='542' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_local_data' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-13'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_destroy' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_destroyEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='data' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1897' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-16'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='length' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='721' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-9'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='empty' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5emptyEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='816' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-17'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='assign' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6assignERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1093' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-19'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='operator=' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='550' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-19'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='size' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='715' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <return type-id='type-id-9'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_local_data' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <return type-id='type-id-11'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='379' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_length' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_lengthEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='130' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_set_length' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2ERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='398' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-19'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct&lt;char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_St20forward_iterator_tag' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-22'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct_aux&lt;char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPcEEvT_S7_St12__false_type' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-22'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct&lt;char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-21'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_data' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-11'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_capacity' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private' static='yes'>
+            <function-decl name='_S_copy' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_S_copyEPcPKcm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private' static='yes'>
+            <function-decl name='_S_copy_chars' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcS5_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-21'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='operator=' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='587' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-23'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2EPKcRKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='454' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-24'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct&lt;const char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-22'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct_aux&lt;const char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-22'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_construct&lt;const char *&gt;' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-16'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private' static='yes'>
+            <function-decl name='_S_copy_chars' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='344' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-21'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-16'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='append' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='982' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-19'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='operator+=' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEpLERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='941' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-19'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2EPKcmRKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='444' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-24'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='append' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1024' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='private'>
+            <function-decl name='_M_check_length' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE15_M_check_lengthEmmPKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-16'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='basic_string' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2EOS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-23'/>
+              <return type-id='type-id-6'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='append' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1011' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='substr' mangled-name='_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='2293' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-15' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-3'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='replace' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7replaceEmmPKcm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1578' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-16'/>
+              <parameter type-id='type-id-9'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+          <member-function access='public'>
+            <function-decl name='insert' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6insertEmPKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='1392' column='1' visibility='default' binding='global' size-in-bits='64'>
+              <parameter type-id='type-id-18' is-artificial='yes'/>
+              <parameter type-id='type-id-9'/>
+              <parameter type-id='type-id-16'/>
+              <return type-id='type-id-20'/>
+            </function-decl>
+          </member-function>
+        </class-decl>
+        <class-decl name='basic_stringbuf&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='832' visibility='default' is-declaration-only='yes' id='type-id-25'/>
+      </namespace-decl>
+
+
+      <typedef-decl name='ptrdiff_t' type-id='type-id-26' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0/bits/c++config.h' line='197' column='1' id='type-id-27'/>
+      <typedef-decl name='size_t' type-id='type-id-28' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0/bits/c++config.h' line='196' column='1' id='type-id-29'/>
+      <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-30'>
+        <underlying-type type-id='type-id-8'/>
+      </enum-decl>
+      <typedef-decl name='memory_order' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='63' column='1' id='type-id-31'/>
+      <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='512' visibility='default' is-declaration-only='yes' id='type-id-32'>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_streambuf' mangled-name='_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/streambuf' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-33' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='basic_istream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='2240' visibility='default' is-declaration-only='yes' id='type-id-34'>
+        <member-function access='public'>
+          <function-decl name='gcount' mangled-name='_ZNKSi6gcountEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/istream' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-35' is-artificial='yes'/>
+            <return type-id='type-id-36'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_istream' mangled-name='_ZNSiD2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/istream' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-37' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='basic_iostream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='2304' visibility='default' is-declaration-only='yes' id='type-id-38'>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_iostream' mangled-name='_ZNSdD2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/istream' line='856' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-39' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='2112' visibility='default' is-declaration-only='yes' id='type-id-40'>
+        <member-function access='public'>
+          <function-decl name='rdstate' mangled-name='_ZNKSt9basic_iosIcSt11char_traitsIcEE7rdstateEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_ios.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-41' is-artificial='yes'/>
+            <return type-id='type-id-42'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='setstate' mangled-name='_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateESt12_Ios_Iostate' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_ios.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-43' is-artificial='yes'/>
+            <parameter type-id='type-id-42'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='eof' mangled-name='_ZNKSt9basic_iosIcSt11char_traitsIcEE3eofEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_ios.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-41' is-artificial='yes'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='fail' mangled-name='_ZNKSt9basic_iosIcSt11char_traitsIcEE4failEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_ios.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-41' is-artificial='yes'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_ios' mangled-name='_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_ios.h' line='282' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-43' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+
+
+    <namespace-decl name='__gnu_cxx'>
+      <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
+        <parameter type-id='type-id-44'/>
+        <parameter type-id='type-id-44'/>
+        <return type-id='type-id-45'/>
+      </function-decl>
+    </namespace-decl>
+    <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-45' visibility='default' is-declaration-only='yes' id='type-id-22'>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;unsigned char&gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-47'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='pointer' type-id='type-id-49' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='450' column='1' id='type-id-48'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='allocator_type' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='445' column='1' id='type-id-50'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='other' type-id='type-id-47' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='169' column='1' id='type-id-51'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='_Tp_alloc_type' type-id='type-id-51' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='75' column='1' id='type-id-52'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='pointer' type-id='type-id-48' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='104' column='1' id='type-id-12'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='size_type' type-id='type-id-29' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='236' column='1' id='type-id-53'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='WordType' type-id='type-id-55' filepath='src/mongo/platform/atomic_word.h' line='54' column='1' id='type-id-54'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='__int_type' type-id='type-id-55' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='241' column='1' id='type-id-56'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='__integral_type' type-id='type-id-55' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/atomic' line='626' column='1' id='type-id-57'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rval_reference_type' type-id='type-id-59' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='152' column='1' id='type-id-58'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rval_reference_type' type-id='type-id-58' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='777' column='1' id='type-id-60'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='const_pointer' type-id='type-id-16' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='453' column='1' id='type-id-61'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='const_pointer' type-id='type-id-61' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='105' column='1' id='type-id-14'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='size_type' type-id='type-id-53' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='106' column='1' id='type-id-10'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='const_iterator' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='233' column='1' id='type-id-62'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='type' type-id='type-id-64' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='143' column='1' id='type-id-63'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='iterator' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='231' column='1' id='type-id-65'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; &gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-66'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='bytes_type' type-id='type-id-21' filepath='src/mongo/base/data_view.h' line='71' column='1' id='type-id-67'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reference_type' type-id='type-id-69' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='150' column='1' id='type-id-68'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;unsigned long&gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-70'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='value_type' type-id='type-id-28' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='447' column='1' id='type-id-71'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='value_type' type-id='type-id-71' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='103' column='1' id='type-id-72'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reference' type-id='type-id-74' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='109' column='1' id='type-id-73'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reference' type-id='type-id-73' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='229' column='1' id='type-id-75'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reference_type' type-id='type-id-68' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='774' column='1' id='type-id-76'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='mutex_type' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='383' column='1' id='type-id-77'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='type' type-id='type-id-79' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/type_traits' line='1592' column='1' id='type-id-78'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rep' type-id='type-id-26' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/chrono' line='243' column='1' id='type-id-80'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='other' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/allocator.h' line='105' column='1' id='type-id-81'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='__type' type-id='type-id-81' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='65' column='1' id='type-id-82'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='__allocator_type' type-id='type-id-84' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='514' column='1' id='type-id-83'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='__class_type' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='507' column='1' id='type-id-85'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='_Class' type-id='type-id-85' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='554' column='1' id='type-id-86'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;mongo::BSONObj&gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-87'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='type' type-id='type-id-22' filepath='src/third_party/boost-1.60.0/boost/detail/reference_content.hpp' line='80' column='1' id='type-id-88'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='internal_type' type-id='type-id-88' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='205' column='1' id='type-id-89'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='difference_type' type-id='type-id-27' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator_base_types.h' line='182' column='1' id='type-id-90'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='difference_type' type-id='type-id-90' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='732' column='1' id='type-id-91'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;char&gt;' type-id='type-id-93' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-92'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='string_type' type-id='type-id-3' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='70' column='1' id='type-id-94'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='char_type' type-id='type-id-96' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/char_traits.h' line='235' column='1' id='type-id-95'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reverse_iterator' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='235' column='1' id='type-id-97'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='unspecified_bool_type' type-id='type-id-99' filepath='src/third_party/boost-1.60.0/boost/system/error_code.hpp' line='359' column='1' id='type-id-98'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; &gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-100'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='rebind_alloc&lt;boost::filesystem::path&gt;' type-id='type-id-22' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='477' column='1' id='type-id-101'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='element_type' type-id='type-id-88' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/shared_ptr.hpp' line='345' column='1' id='type-id-102'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='reference' type-id='type-id-104' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='645' column='1' id='type-id-103'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='value_type' type-id='type-id-96' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='67' column='1' id='type-id-105'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='argument_type' type-id='type-id-107' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='164' column='1' id='type-id-106'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='argument_type' type-id='type-id-106' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='782' column='1' id='type-id-108'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='const_reference' type-id='type-id-110' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/alloc_traits.h' line='110' column='1' id='type-id-109'/>
+      </member-type>
+      <member-type access='public'>
+        <typedef-decl name='const_reference' type-id='type-id-109' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='230' column='1' id='type-id-111'/>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-type access='public'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-46'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </member-type>
+      <member-function access='public'>
+        <function-decl name='data' mangled-name='_ZNK5mongo14ConstDataRange4dataEv' filepath='src/mongo/base/data_range.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='length' mangled-name='_ZNK5mongo14ConstDataRange6lengthEv' filepath='src/mongo/base/data_range.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-113'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='ConstDataRange' mangled-name='_ZN5mongo14ConstDataRangeC2EPKcS2_l' filepath='src/mongo/base/data_range.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='ConstDataRange' mangled-name='_ZN5mongo14ConstDataRangeC2EPKcml' filepath='src/mongo/base/data_range.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-29'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StatusWith' mangled-name='_ZN5mongo10StatusWithISt6vectorINS_7BSONObjESaIS2_EEEC2ENS_6StatusE' filepath='src/mongo/base/status_with.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [25]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA25_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-115'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;int&gt;' mangled-name='_ZN10mongoutils3str6streamlsIiEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-116'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [21]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA21_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-117'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [24]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA24_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-118'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StatusWith' mangled-name='_ZN5mongo10StatusWithISt6vectorINS_7BSONObjESaIS2_EEEC2ENS_10ErrorCodes5ErrorERKN10mongoutils3str6streamE' filepath='src/mongo/base/status_with.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-46'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='size' mangled-name='_ZNKSt6vectorImSaImEE4sizeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='654' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-119'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='resize' mangled-name='_ZNSt6vectorIcSaIcEE6resizeEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='673' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='data' mangled-name='_ZNSt6vectorIhSaIhEE4dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-49'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='allocate' mangled-name='_ZNSt16allocator_traitsISaImEE8allocateERS0_m' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='490' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='deallocate' mangled-name='_ZNSt16allocator_traitsISaImEE10deallocateERS0_Pmm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-48'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_allocate' mangled-name='_ZNSt12_Vector_baseImSaImEE11_M_allocateEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='167' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_deallocate' mangled-name='_ZNSt12_Vector_baseImSaImEE13_M_deallocateEPmm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='174' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-48'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_erase_at_end' mangled-name='_ZNSt6vectorIcSaIcEE15_M_erase_at_endEPc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1436' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-48'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_check_len' mangled-name='_ZNKSt6vectorImSaImEE12_M_check_lenEmPKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1422' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-53'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_default_append' mangled-name='_ZNSt6vectorIcSaIcEE17_M_default_appendEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1400' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIhSaIhEE17_M_default_appendEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='intrusive_ptr' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='swap' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEE4swapERS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEaSEOS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~intrusive_ptr' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEED2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator bool' mangled-name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEcvbEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/operator_bool.hpp' line='12' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator!' mangled-name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEntEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/operator_bool.hpp' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='SharedBuffer' mangled-name='_ZN5mongo12SharedBufferC2Ev' filepath='src/mongo/util/shared_buffer.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='allocate' mangled-name='_ZN5mongo12SharedBuffer8allocateEm' filepath='src/mongo/util/shared_buffer.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='AtomicWord' mangled-name='_ZN5mongo10AtomicWordIjvEC2Ej' filepath='src/mongo/platform/atomic_word.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-54'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fetchAndSubtract' mangled-name='_ZN5mongo10AtomicWordIjvE16fetchAndSubtractEj' filepath='src/mongo/platform/atomic_word.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-54'/>
+          <return type-id='type-id-54'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='subtractAndFetch' mangled-name='_ZN5mongo10AtomicWordIjvE16subtractAndFetchEj' filepath='src/mongo/platform/atomic_word.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-54'/>
+          <return type-id='type-id-54'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='load' mangled-name='_ZNK5mongo10AtomicWordIjvE4loadEv' filepath='src/mongo/platform/atomic_word.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-54'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Holder' mangled-name='_ZN5mongo12SharedBuffer6HolderC2Ejm' filepath='src/mongo/util/shared_buffer.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-54'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='data' mangled-name='_ZN5mongo12SharedBuffer6Holder4dataEv' filepath='src/mongo/util/shared_buffer.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='isShared' mangled-name='_ZNK5mongo12SharedBuffer6Holder8isSharedEv' filepath='src/mongo/util/shared_buffer.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='takeOwnership' mangled-name='_ZN5mongo12SharedBuffer13takeOwnershipEPvm' filepath='src/mongo/util/shared_buffer.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-121'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get' mangled-name='_ZNK5mongo21SharedBufferAllocator3getEv' filepath='src/mongo/util/shared_buffer.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='realloc' mangled-name='_ZN5mongo21SharedBufferAllocator7reallocEm' filepath='src/mongo/util/shared_buffer.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get' mangled-name='_ZNK5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEE3getEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='SharedBufferAllocator' mangled-name='_ZN5mongo21SharedBufferAllocatorC2Ev' filepath='src/mongo/bson/util/builder.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='malloc' mangled-name='_ZN5mongo21SharedBufferAllocator6mallocEm' filepath='src/mongo/bson/util/builder.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_BufBuilder' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEEC2Ei' filepath='src/mongo/bson/util/builder.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='grow' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE4growEi' filepath='src/mongo/bson/util/builder.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='grow_reallocate' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE15grow_reallocateEi' filepath='src/mongo/bson/util/builder.h' line='342' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE15grow_reallocateEi'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringBuilderImpl' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEEC2Ev' filepath='src/mongo/bson/util/builder.h' line='395' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE6appendENS_10StringDataE' filepath='src/mongo/bson/util/builder.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='copyTo' mangled-name='_ZNK5mongo10StringData6copyToEPcb' filepath='src/mongo/base/string_data.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-17'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2EPKc' filepath='src/mongo/base/string_data.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2EPKcm' filepath='src/mongo/base/string_data.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsENS_10StringDataE' filepath='src/mongo/bson/util/builder.h' line='439' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsEPKc' filepath='src/mongo/bson/util/builder.h' line='436' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsEi' filepath='src/mongo/bson/util/builder.h' line='400' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsEc' filepath='src/mongo/bson/util/builder.h' line='432' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-96'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendIntegral&lt;int&gt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIiEERS2_T_i' filepath='src/mongo/bson/util/builder.h' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIiEERS2_T_i'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__atomic_base' mangled-name='_ZNSt13__atomic_baseIjEC2Ej' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-56'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fetch_sub' mangled-name='_ZNSt13__atomic_baseIjE9fetch_subEjSt12memory_order' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='522' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-56'/>
+          <parameter type-id='type-id-31'/>
+          <return type-id='type-id-56'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='load' mangled-name='_ZNKSt13__atomic_baseIjE4loadESt12memory_order' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-31'/>
+          <return type-id='type-id-56'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='atomic' mangled-name='_ZNSt6atomicIjEC2Ej' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/atomic' line='635' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-57'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseISt6vectorIN5mongo7BSONObjESaIS4_EEEC2Ev' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='construct' mangled-name='_ZN5boost15optional_detail13optional_baseIN5mongo12FTDCBSONUtil8FTDCTypeEE9constructEOS4_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-58'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseIN5mongo12FTDCBSONUtil8FTDCTypeEEC2EOS4_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-58'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='optional' mangled-name='_ZN5boost8optionalISt6vectorIN5mongo7BSONObjESaIS3_EEEC2Ev' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='786' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='optional' mangled-name='_ZN5boost8optionalIN5mongo12FTDCBSONUtil8FTDCTypeEEC2EOS3_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='799' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-60'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Status' mangled-name='_ZN5mongo6StatusC2Ev' filepath='src/mongo/base/status.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='OK' mangled-name='_ZN5mongo6Status2OKEv' filepath='src/mongo/base/status.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='compress' mangled-name='_ZN5mongo15BlockCompressor8compressENS_14ConstDataRangeE' filepath='src/mongo/db/ftdc/block_compressor.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15BlockCompressor8compressENS_14ConstDataRangeE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='uncompress' mangled-name='_ZN5mongo15BlockCompressor10uncompressENS_14ConstDataRangeEm' filepath='src/mongo/db/ftdc/block_compressor.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15BlockCompressor10uncompressENS_14ConstDataRangeEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='allocate' mangled-name='_ZN9__gnu_cxx13new_allocatorImE8allocateEmPKv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-121'/>
+          <return type-id='type-id-12'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='deallocate' mangled-name='_ZN9__gnu_cxx13new_allocatorImE10deallocateEPmm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-12'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_default_n&lt;unsigned char *, unsigned long&gt;' mangled-name='_ZNSt27__uninitialized_default_n_1ILb1EE18__uninit_default_nIPhmEET_S3_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-49'/>
+          <parameter type-id='type-id-28'/>
+          <return type-id='type-id-49'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_m&lt;unsigned char&gt;' mangled-name='_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIhEEPT_PKS3_S6_S4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-123'/>
+          <parameter type-id='type-id-123'/>
+          <parameter type-id='type-id-49'/>
+          <return type-id='type-id-49'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;unsigned char *&gt;, unsigned char *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPhES3_EET0_T_S6_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-49'/>
+          <return type-id='type-id-49'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator StringData' mangled-name='_ZN5mongo4ItoAcvNS_10StringDataEEv' filepath='src/mongo/util/itoa.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get' mangled-name='_ZNKSt10unique_ptrINSt7__cxx1119basic_ostringstreamIcSt11char_traitsIcESaIcEEESt14default_deleteIS5_EE3getEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='release' mangled-name='_ZNSt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS1_EE7releaseEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='unique_ptr' mangled-name='_ZNSt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS1_EEC2EOS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='205' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator-&gt;' mangled-name='_ZNKSt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS1_EEptEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~unique_ptr' mangled-name='_ZNSt10unique_ptrIN5mongo14BSONObjBuilderESt14default_deleteIS1_EED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='232' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__normal_iterator' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPSt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS3_EESt6vectorIS6_SaIS6_EEEC2ERKS7_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-124'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator++' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo7BSONObjESt6vectorIS2_SaIS2_EEEppEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='761' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; &gt;' mangled-name='_ZNSt6vectorISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS2_EESaIS5_EE12emplace_backIJS5_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='begin' mangled-name='_ZNKSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE5beginEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='556' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-62'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='empty' mangled-name='_ZNKSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE5emptyEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='743' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='begin' mangled-name='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE5beginEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='547' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-65'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='end' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE3endEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-65'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; &gt;' mangled-name='_ZNSt6vectorISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS2_EESaIS5_EE19_M_emplace_back_auxIJS5_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS2_EESaIS5_EE19_M_emplace_back_auxIJS5_EEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt;, std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; &gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS3_EEE9constructIS6_JS6_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt;, std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; &gt;' mangled-name='_ZNSt16allocator_traitsISaISt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS2_EEEE9constructIS5_JS5_EEEvRS6_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCCollectorInterface *&gt;' mangled-name='_ZNSt10_Head_baseILm0EPN5mongo22FTDCCollectorInterfaceELb0EEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-125'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()' mangled-name='_ZNKSt14default_deleteIN5mongo22FTDCCollectorInterfaceEEclEPS1_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-64'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCCollectorInterface *, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; , void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJPN5mongo22FTDCCollectorInterfaceESt14default_deleteIS1_EEEC2IS2_JS4_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-125'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::FTDCCollectorInterface *, std::default_delete&lt;mongo::FTDCCollectorInterface&gt;, void&gt;' mangled-name='_ZNSt5tupleIJPN5mongo22FTDCCollectorInterfaceESt14default_deleteIS1_EEEC2IS2_S4_vEEOT_OT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-125'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='add' mangled-name='_ZN5mongo23FTDCCollectorCollection3addESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' filepath='src/mongo/db/ftdc/collector.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo23FTDCCollectorCollection3addESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObj' mangled-name='_ZN5mongo7BSONObjC2Ev' filepath='src/mongo/bson/bsonobj.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObj' mangled-name='_ZN5mongo7BSONObjC2EOS0_' filepath='src/mongo/bson/bsonobj.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObj' mangled-name='_ZN5mongo7BSONObjC2EPKc' filepath='src/mongo/bson/bsonobj.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='init' mangled-name='_ZN5mongo7BSONObj4initEPKc' filepath='src/mongo/bson/bsonobj.h' line='555' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='objsize' mangled-name='_ZNK5mongo7BSONObj7objsizeEv' filepath='src/mongo/bson/bsonobj.h' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='isValid' mangled-name='_ZNK5mongo7BSONObj7isValidEv' filepath='src/mongo/bson/bsonobj.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shareOwnershipWith' mangled-name='_ZNR5mongo7BSONObj18shareOwnershipWithENS_17ConstSharedBufferE' filepath='src/mongo/bson/bsonobj.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::BSONObj, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo7BSONObjENS0_6Date_tEEEC2IS1_RS2_vEEOT_OT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::BSONObj, mongo::Date_t, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo7BSONObjENS0_6Date_tEEEC2IS1_S2_vEEOT_OT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getServiceContext' mangled-name='_ZNK5mongo6Client17getServiceContextEv' filepath='src/mongo/db/client.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-126'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='collect' mangled-name='_ZN5mongo23FTDCCollectorCollection7collectEPNS_6ClientE' filepath='src/mongo/db/ftdc/collector.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo23FTDCCollectorCollection7collectEPNS_6ClientE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/mongo/base/string_data.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-127'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2EPKcmNS0_14TrustedInitTagE' filepath='src/mongo/base/string_data.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::Date_t &amp;&gt;' mangled-name='_ZNSt10_Head_baseILm2EN5mongo6Date_tELb0EEC2IRS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::Date_t&gt;' mangled-name='_ZNSt10_Head_baseILm2EN5mongo6Date_tELb0EEC2IS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::Date_t &amp;&gt;' mangled-name='_ZNSt11_Tuple_implILm2EJN5mongo6Date_tEEEC2IRS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::Date_t&gt;' mangled-name='_ZNSt11_Tuple_implILm1EJN5mongo6Date_tEEEC2IS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::BSONObj, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm1EJN5mongo7BSONObjENS0_6Date_tEEEC2IS1_JRS2_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::BSONObj, mongo::Date_t, void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo7BSONObjENS0_6Date_tEEEC2IS1_JS2_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::BSONObj&gt;' mangled-name='_ZNSt10_Head_baseILm1EN5mongo7BSONObjELb0EEC2IS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='intrusive_ptr' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2EOS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='intrusive_ptr' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEC2ERKS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5boost13intrusive_ptrIN5mongo12SharedBuffer6HolderEEaSERKS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/intrusive_ptr.hpp' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='ConstSharedBuffer' mangled-name='_ZN5mongo17ConstSharedBufferC2Ev' filepath='src/mongo/util/shared_buffer.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='release' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE7releaseEv' filepath='src/mongo/bson/util/builder.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='skip' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE4skipEi' filepath='src/mongo/bson/util/builder.h' line='188' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reserveBytes' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE12reserveBytesEi' filepath='src/mongo/bson/util/builder.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNumImpl&lt;char&gt;' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE13appendNumImplIcEEvT_' filepath='src/mongo/bson/util/builder.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-96'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNum' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendNumEc' filepath='src/mongo/bson/util/builder.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-96'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendStr' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendStrENS_10StringDataEb' filepath='src/mongo/bson/util/builder.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-17'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='len' mangled-name='_ZNK5mongo11_BufBuilderINS_21SharedBufferAllocatorEE3lenEv' filepath='src/mongo/bson/util/builder.h' line='275' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='buf' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE3bufEv' filepath='src/mongo/bson/util/builder.h' line='193' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='claimReservedBytes' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE18claimReservedBytesEi' filepath='src/mongo/bson/util/builder.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fetch_add' mangled-name='_ZNSt13__atomic_baseIjE9fetch_addEjSt12memory_order' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/atomic_base.h' line='512' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-56'/>
+          <parameter type-id='type-id-31'/>
+          <return type-id='type-id-56'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fetchAndAdd' mangled-name='_ZN5mongo10AtomicWordIjvE11fetchAndAddEj' filepath='src/mongo/platform/atomic_word.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-54'/>
+          <return type-id='type-id-54'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObjBuilder' mangled-name='_ZN5mongo14BSONObjBuilderC2Ei' filepath='src/mongo/bson/bsonobjbuilder.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilderC2Ei'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='subobjStart' mangled-name='_ZN5mongo14BSONObjBuilder11subobjStartENS_10StringDataE' filepath='src/mongo/bson/bsonobjbuilder.h' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder11subobjStartENS_10StringDataE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-128'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObjBuilder' mangled-name='_ZN5mongo14BSONObjBuilderC2ERNS_11_BufBuilderINS_21SharedBufferAllocatorEEE' filepath='src/mongo/bson/bsonobjbuilder.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilderC2ERNS_11_BufBuilderINS_21SharedBufferAllocatorEEE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-128'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~BSONObjBuilder' mangled-name='_ZN5mongo14BSONObjBuilderD2Ev' filepath='src/mongo/bson/bsonobjbuilder.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilderD2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='owned' mangled-name='_ZNK5mongo14BSONObjBuilder5ownedEv' filepath='src/mongo/bson/bsonobjbuilder.h' line='758' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='done' mangled-name='_ZN5mongo14BSONObjBuilder4doneEv' filepath='src/mongo/bson/bsonobjbuilder.h' line='677' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='obj' mangled-name='_ZN5mongo14BSONObjBuilder3objEv' filepath='src/mongo/bson/bsonobjbuilder.h' line='665' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder3objEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_done' mangled-name='_ZN5mongo14BSONObjBuilder5_doneEv' filepath='src/mongo/bson/bsonobjbuilder.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder5_doneEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()' mangled-name='_ZNKSt14default_deleteIN5mongo14BSONObjBuilderEEclEPS1_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2EPKc' filepath='src/mongo/base/string_data.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo10StringDataC2EPKc'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore' mangled-name='_ZN5mongo8DataType7HandlerIcvE11unsafeStoreERKcPcPm' filepath='src/mongo/base/data_type.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-129'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;char&gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreIcEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-129'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore' mangled-name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIxEEvE11unsafeStoreERKS3_PcPm' filepath='src/mongo/base/data_type_endian.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;mongo::LittleEndian&lt;char&gt; &gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIcEEEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerIivE10unsafeLoadEPiPKcPm' filepath='src/mongo/base/data_type.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-131'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore' mangled-name='_ZN5mongo8DataType7HandlerIivE11unsafeStoreERKiPcPm' filepath='src/mongo/base/data_type.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-116'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;int&gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadIiEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-131'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerINS_12LittleEndianIyEEvE10unsafeLoadEPS3_PKcPm' filepath='src/mongo/base/data_type_endian.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;mongo::LittleEndian&lt;int&gt; &gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadINS_12LittleEndianIiEEEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;int&gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreIiEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-116'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;mongo::LittleEndian&lt;int&gt; &gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIiEEEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='write&lt;mongo::LittleEndian&lt;char&gt; &gt;' mangled-name='_ZN5mongo8DataView5writeINS_12LittleEndianIcEEEERS0_RKT_m' filepath='src/mongo/base/data_view.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='write&lt;mongo::LittleEndian&lt;int&gt; &gt;' mangled-name='_ZN5mongo8DataView5writeINS_12LittleEndianIiEEEERS0_RKT_m' filepath='src/mongo/base/data_view.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;int&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEERKS0_PT_m' filepath='src/mongo/base/data_view.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;int&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIiEEEET_m' filepath='src/mongo/base/data_view.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='got' mangled-name='_ZN5mongo15BSONSizeTracker3gotEi' filepath='src/mongo/bson/bsonmisc.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()' mangled-name='_ZZN5mongo14BSONObjBuilder3objEvENKUlvE_clEv' filepath='src/mongo/bson/bsonobjbuilder.h' line='666' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZZN5mongo14BSONObjBuilder3objEvENKUlvE_clEv'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator++' mangled-name='_ZNSt13move_iteratorIPSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEEEppEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='1004' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; *&gt;, std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPSt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS5_EEES9_EET0_T_SC_SB_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__destroy&lt;std::unique_ptr&lt;mongo::FTDCCollectorInterface, std::default_delete&lt;mongo::FTDCCollectorInterface&gt; &gt; *&gt;' mangled-name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSt10unique_ptrIN5mongo22FTDCCollectorInterfaceESt14default_deleteIS4_EEEEvT_S9_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_construct.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='objdata' mangled-name='_ZNK5mongo7BSONObj7objdataEv' filepath='src/mongo/bson/bsonobj.h' line='356' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='isEmpty' mangled-name='_ZNK5mongo7BSONObj7isEmptyEv' filepath='src/mongo/bson/bsonobj.h' line='378' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='swap' mangled-name='_ZN5mongo17ConstSharedBuffer4swapERS0_' filepath='src/mongo/bson/bsonobj.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5mongo7BSONObjaSES0_' filepath='src/mongo/bson/bsonobj.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObj' mangled-name='_ZN5mongo7BSONObjC2ERKS0_' filepath='src/mongo/bson/bsonobj.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='destroy' mangled-name='_ZN5boost15optional_detail13optional_baseIbE7destroyEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='704' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected' destructor='yes'>
+        <function-decl name='~optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseIbED2Ev' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='destroy_impl' mangled-name='_ZN5boost15optional_detail13optional_baseIbE12destroy_implEN4mpl_5bool_ILb0EEE' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='745' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-132'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='is_initialized' mangled-name='_ZNK5boost15optional_detail13optional_baseIN5mongo12FTDCBSONUtil8FTDCTypeEE14is_initializedEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='468' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='isOK' mangled-name='_ZNK5mongo6Status4isOKEv' filepath='src/mongo/base/status_with.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithIbE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-69'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~Status' mangled-name='_ZN5mongo6StatusD2Ev' filepath='src/mongo/base/status.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unref' mangled-name='_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE' filepath='src/mongo/base/status.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='ref' mangled-name='_ZN5mongo6Status3refEPNS0_9ErrorInfoE' filepath='src/mongo/base/status.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Status' mangled-name='_ZN5mongo6StatusC2ERKS0_' filepath='src/mongo/base/status.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Status' mangled-name='_ZN5mongo6StatusC2EOS0_' filepath='src/mongo/base/status.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5mongo6StatusaSEOS0_' filepath='src/mongo/base/status.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseISt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS4_EEEC2EOS8_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='optional' mangled-name='_ZN5boost8optionalISt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS3_EEEC2EOS7_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='870' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='swap' mangled-name='_ZNSt6thread4swapERS_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1194' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator[]' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEixEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-75'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='clear' mangled-name='_ZNSt6vectorImSaImEE5clearEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get' mangled-name='_ZN5boost8optionalIN5mongo12FTDCBSONUtil8FTDCTypeEE3getEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='1025' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-76'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator*' mangled-name='_ZNR5boost8optionalIN5mongo12FTDCBSONUtil8FTDCTypeEEdeEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='1042' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-76'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::ConstDataRange, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo14ConstDataRangeENS0_6Date_tEEEC2IS1_RS2_vEEOT_OT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple' mangled-name='_ZNSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS0_7BSONObjENS0_6Date_tEEEC2EOS5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithISt5tupleIJNS_14ConstDataRangeENS_6Date_tEEEE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_swap_data' mangled-name='_ZNSt12_Vector_baseIN5mongo7BSONObjESaIS1_EE12_Vector_impl12_M_swap_dataERS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='getArrayOffset' mangled-name='_ZN5mongo14FTDCCompressor14getArrayOffsetEjjj' filepath='src/mongo/db/ftdc/compressor.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-133'/>
+          <parameter type-id='type-id-133'/>
+          <parameter type-id='type-id-133'/>
+          <return type-id='type-id-113'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='addSample' mangled-name='_ZN5mongo14FTDCCompressor9addSampleERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/compressor.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCCompressor9addSampleERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_reset' mangled-name='_ZN5mongo14FTDCCompressor6_resetERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/compressor.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCCompressor6_resetERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getCompressedSamples' mangled-name='_ZN5mongo14FTDCCompressor20getCompressedSamplesEv' filepath='src/mongo/db/ftdc/compressor.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCCompressor20getCompressedSamplesEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reset' mangled-name='_ZN5mongo14FTDCCompressor5resetEv' filepath='src/mongo/db/ftdc/compressor.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCCompressor5resetEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo12FTDCBSONUtil8FTDCTypeENS0_7BSONObjENS0_6Date_tEEEC2EOS5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='367' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCCompressor::CompressorState, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm1EJN5mongo14FTDCCompressor15CompressorStateENS0_6Date_tEEEC2IS2_JRS3_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-134'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::ConstDataRange &amp;, mongo::FTDCCompressor::CompressorState, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo14ConstDataRangeENS0_14FTDCCompressor15CompressorStateENS0_6Date_tEEEC2IRS1_JS3_RS4_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-134'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::ConstDataRange &amp;, mongo::FTDCCompressor::CompressorState, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo14ConstDataRangeENS0_14FTDCCompressor15CompressorStateENS0_6Date_tEEEC2IJRS1_S3_RS4_EvEEDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-134'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCCompressor::CompressorState&gt;' mangled-name='_ZNSt10_Head_baseILm1EN5mongo14FTDCCompressor15CompressorStateELb0EEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-134'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::ConstDataRange&gt;' mangled-name='_ZNSt10_Head_baseILm0EN5mongo14ConstDataRangeELb0EEC2IS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setlen' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE6setlenEi' filepath='src/mongo/bson/util/builder.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendBuf' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendBufEPKvm' filepath='src/mongo/bson/util/builder.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-121'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNumImpl&lt;unsigned int&gt;' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE13appendNumImplIjEEvT_' filepath='src/mongo/bson/util/builder.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-55'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNum' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendNumEj' filepath='src/mongo/bson/util/builder.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-55'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore' mangled-name='_ZN5mongo8DataType7HandlerIjvE11unsafeStoreERKjPcPm' filepath='src/mongo/base/data_type.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-135'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;unsigned int&gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreIjEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-135'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;mongo::LittleEndian&lt;unsigned int&gt; &gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIjEEEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='FTDCVarInt' mangled-name='_ZN5mongo10FTDCVarIntC2Em' filepath='src/mongo/db/ftdc/varint.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-136'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='store&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo8DataType5storeINS_10FTDCVarIntEEENS_6StatusERKT_PcmPml' filepath='src/mongo/base/data_type.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='write&lt;mongo::LittleEndian&lt;unsigned int&gt; &gt;' mangled-name='_ZN5mongo8DataView5writeINS_12LittleEndianIjEEEERS0_RKT_m' filepath='src/mongo/base/data_view.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='DataBuilder' mangled-name='_ZN5mongo11DataBuilderC2Em' filepath='src/mongo/base/data_builder.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getCursor' mangled-name='_ZN5mongo11DataBuilder9getCursorEv' filepath='src/mongo/base/data_builder.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='size' mangled-name='_ZNK5mongo11DataBuilder4sizeEv' filepath='src/mongo/base/data_builder.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-29'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()' mangled-name='_ZN5mongo11DataBuilder7FreeBufclEPc' filepath='src/mongo/base/data_builder.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-21'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_ensureStorage' mangled-name='_ZN5mongo11DataBuilder14_ensureStorageEv' filepath='src/mongo/base/data_builder.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_getSerializedSize&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo11DataBuilder18_getSerializedSizeINS_10FTDCVarIntEEEmRKT_' filepath='src/mongo/base/data_builder.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-29'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reserve' mangled-name='_ZN5mongo11DataBuilder7reserveEm' filepath='src/mongo/base/data_builder.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeAndAdvance&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo11DataBuilder15writeAndAdvanceINS_10FTDCVarIntEEENS_6StatusERKT_' filepath='src/mongo/base/data_builder.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo11DataBuilder15writeAndAdvanceINS_10FTDCVarIntEEENS_6StatusERKT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='resize' mangled-name='_ZN5mongo11DataBuilder6resizeEm' filepath='src/mongo/base/data_builder.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo11DataBuilder6resizeEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator bool' mangled-name='_ZNKSt10unique_ptrINSt7__cxx1119basic_ostringstreamIcSt11char_traitsIcESaIcEEESt14default_deleteIS5_EEcvbEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='318' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reset' mangled-name='_ZNSt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS1_EE5resetEPS1_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='339' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-48'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZNSt10unique_ptrIN5mongo15FTDCFileManagerESt14default_deleteIS1_EEaSEOS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='249' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithINS_9ValidatedINS_7BSONObjEEEE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::ConstDataRange, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo14ConstDataRangeENS0_6Date_tEEEC2IS1_JRS2_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='DataRange' mangled-name='_ZN5mongo9DataRangeC2EPcS1_l' filepath='src/mongo/base/data_range.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-67'/>
+          <parameter type-id='type-id-67'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='DataRangeCursor' mangled-name='_ZN5mongo15DataRangeCursorC2EPcS1_l' filepath='src/mongo/base/data_range_cursor.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_default_n&lt;unsigned long *, unsigned long&gt;' mangled-name='_ZNSt27__uninitialized_default_n_1ILb1EE18__uninit_default_nIPmmEET_S3_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-28'/>
+          <return type-id='type-id-137'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_m&lt;unsigned long&gt;' mangled-name='_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mImEEPT_PKS3_S6_S4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-138'/>
+          <parameter type-id='type-id-138'/>
+          <parameter type-id='type-id-137'/>
+          <return type-id='type-id-137'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;unsigned long *&gt;, unsigned long *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPmES3_EET0_T_S6_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-137'/>
+          <return type-id='type-id-137'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__shared_count' mangled-name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~__shared_count' mangled-name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='656' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt;&gt;' mangled-name='_ZNSt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEvEEC2IS9_JEEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1509' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Bind_simple' mangled-name='_ZNSt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEvEEC2EOSB_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1514' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='private'>
+        <function-decl name='_M_invoke&lt;&gt;' mangled-name='_ZNSt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEvEE9_M_invokeIJEEEvSt12_Index_tupleIJXspT_EEE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1526' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()' mangled-name='_ZNSt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEvEEclEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1517' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Impl' mangled-name='_ZNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEEC2EOSD_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='id' mangled-name='_ZNSt6thread2idC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='joinable' mangled-name='_ZNKSt6thread8joinableEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_ptr&lt;std::allocator&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;, std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt10shared_ptrINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEEEC2ISaISF_EJSE_EEESt19_Sp_make_shared_tagRKT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_make_routine&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt6thread15_M_make_routineISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEEESt10shared_ptrINS_5_ImplIT_EEEOSG_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='thread&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt;&gt;' mangled-name='_ZNSt6threadC2ISt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS4_EEJEEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6threadC2ISt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS4_EEJEEEOT_DpOT0_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__shared_count&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, std::allocator&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;, std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EEC2INSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPSA_EEvEEEESaISJ_EJSI_EEESt19_Sp_make_shared_tagPT_RKT0_DpOT1_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='609' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_swap' mangled-name='_ZNSt14__shared_countILN9__gnu_cxx12_Lock_policyE2EE7_M_swapERS2_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='685' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='lock' mangled-name='_ZNSt11unique_lockISt5mutexE4lockEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='unlock' mangled-name='_ZNSt11unique_lockISt5mutexE6unlockEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='lock_guard' mangled-name='_ZNSt10lock_guardISt5mutexEC2ERS0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='385' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-139'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~lock_guard' mangled-name='_ZNSt10lock_guardISt5mutexED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='391' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reason' mangled-name='_ZNK5mongo6Status6reasonB5cxx11Ev' filepath='src/mongo/base/status.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-127'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='code' mangled-name='_ZNK5mongo6Status4codeEv' filepath='src/mongo/base/status.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-46'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [104]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA104_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-140'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [36]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA36_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-141'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;std::__cxx11::basic_string&lt;char&gt; &gt;' mangled-name='_ZN10mongoutils3str6streamlsINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-19'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setEnabled' mangled-name='_ZN5mongo14FTDCController10setEnabledEb' filepath='src/mongo/db/ftdc/controller.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController10setEnabledEb'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-17'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setPeriod' mangled-name='_ZN5mongo14FTDCController9setPeriodENS_8DurationISt5ratioILl1ELl1000EEEE' filepath='src/mongo/db/ftdc/controller.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController9setPeriodENS_8DurationISt5ratioILl1ELl1000EEEE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-142'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setMaxDirectorySizeBytes' mangled-name='_ZN5mongo14FTDCController24setMaxDirectorySizeBytesEm' filepath='src/mongo/db/ftdc/controller.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController24setMaxDirectorySizeBytesEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-136'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setMaxFileSizeBytes' mangled-name='_ZN5mongo14FTDCController19setMaxFileSizeBytesEm' filepath='src/mongo/db/ftdc/controller.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController19setMaxFileSizeBytesEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-136'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setMaxSamplesPerArchiveMetricChunk' mangled-name='_ZN5mongo14FTDCController34setMaxSamplesPerArchiveMetricChunkEm' filepath='src/mongo/db/ftdc/controller.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController34setMaxSamplesPerArchiveMetricChunkEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setMaxSamplesPerInterimMetricChunk' mangled-name='_ZN5mongo14FTDCController34setMaxSamplesPerInterimMetricChunkEm' filepath='src/mongo/db/ftdc/controller.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController34setMaxSamplesPerInterimMetricChunkEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='empty' mangled-name='_ZNK5boost10filesystem4path5emptyEv' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='511' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5boost10filesystem4pathaSERKS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='setDirectory' mangled-name='_ZN5mongo14FTDCController12setDirectoryERKN5boost10filesystem4pathE' filepath='src/mongo/db/ftdc/controller.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController12setDirectoryERKN5boost10filesystem4pathE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='addPeriodicCollector' mangled-name='_ZN5mongo14FTDCController20addPeriodicCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' filepath='src/mongo/db/ftdc/controller.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController20addPeriodicCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='addOnRotateCollector' mangled-name='_ZN5mongo14FTDCController20addOnRotateCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE' filepath='src/mongo/db/ftdc/controller.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController20addOnRotateCollectorESt10unique_ptrINS_22FTDCCollectorInterfaceESt14default_deleteIS2_EE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getMostRecentPeriodicDocument' mangled-name='_ZN5mongo14FTDCController29getMostRecentPeriodicDocumentEv' filepath='src/mongo/db/ftdc/controller.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController29getMostRecentPeriodicDocumentEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='start' mangled-name='_ZN5mongo14FTDCController5startEv' filepath='src/mongo/db/ftdc/controller.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController5startEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='doLoop' mangled-name='_ZN5mongo14FTDCController6doLoopEv' filepath='src/mongo/db/ftdc/controller.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController6doLoopEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='stop' mangled-name='_ZN5mongo14FTDCController4stopEv' filepath='src/mongo/db/ftdc/controller.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCController4stopEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getGlobalDomain' mangled-name='_ZN5mongo6logger10LogManager15getGlobalDomainEv' filepath='src/mongo/logger/log_manager.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator*' mangled-name='_ZNKSt10unique_ptrINSt7__cxx1119basic_ostringstreamIcSt11char_traitsIcESaIcEEESt14default_deleteIS5_EEdeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/unique_ptr.h' line='288' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-78'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='stream' mangled-name='_ZN5mongo6logger16LogstreamBuilder6streamEv' filepath='src/mongo/logger/logstream_builder.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-143'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsEPKc' filepath='src/mongo/logger/logstream_builder.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/mongo/logger/logstream_builder.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-127'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;mongo::Status&gt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsINS_6StatusEEERS1_RKT_' filepath='src/mongo/logger/logstream_builder.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo6logger16LogstreamBuilderlsINS_6StatusEEERS1_RKT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Bind&lt;mongo::FTDCController *&gt;' mangled-name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS2_EEC2IJS6_EEEOS5_DpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1113' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-144'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Bind' mangled-name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS2_EEC2EOS8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__call&lt;void, 0&gt;' mangled-name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS2_EE6__callIvJEJLm0EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1071' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()&lt;, void&gt;' mangled-name='_ZNSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS2_EEclIJEvEET0_DpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='1129' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCController *&gt;' mangled-name='_ZNSt10_Head_baseILm0EPN5mongo14FTDCControllerELb0EEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCController *&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJPN5mongo14FTDCControllerEEEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::FTDCController *, void&gt;' mangled-name='_ZNSt5tupleIJPN5mongo14FTDCControllerEEEC2IJS2_EvEEDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='thread&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt;, 0&gt;' mangled-name='_ZN5mongo4stdx6threadC2ISt5_BindIFSt7_Mem_fnIMNS_14FTDCControllerEFvvEEPS5_EEJELi0EEEOT_DpOT0_' filepath='src/mongo/stdx/thread.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5mongo4stdx6threadaSEOS1_' filepath='src/mongo/stdx/thread.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__shared_ptr' mangled-name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='876' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~__shared_ptr' mangled-name='_ZNSt12__shared_ptrINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEELN9__gnu_cxx12_Lock_policyE2EED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='925' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_ptr' mangled-name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_release' mangled-name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Sp_counted_base' mangled-name='_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='unique_lock' mangled-name='_ZNSt11unique_lockISt5mutexEC2ERS0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-139'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~unique_lock' mangled-name='_ZNSt11unique_lockISt5mutexED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/mutex' line='447' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__wait_until_impl&lt;std::chrono::duration&lt;long, std::ratio&lt;1, 1000000000&gt; &gt; &gt;' mangled-name='_ZNSt18condition_variable17__wait_until_implINSt6chrono8durationIlSt5ratioILl1ELl1000000000EEEEEESt9cv_statusRSt11unique_lockISt5mutexERKNS1_10time_pointINS1_3_V212system_clockET_EE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/condition_variable' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-30'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='wait_until&lt;std::chrono::duration&lt;long, std::ratio&lt;1, 1000000000&gt; &gt; &gt;' mangled-name='_ZNSt18condition_variable10wait_untilINSt6chrono8durationIlSt5ratioILl1ELl1000000000EEEEEESt9cv_statusRSt11unique_lockISt5mutexERKNS1_10time_pointINS1_3_V212system_clockET_EE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/condition_variable' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-30'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='_M_head' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo7BSONObjENS0_6Date_tEEE7_M_headERS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='IdleThreadBlock' mangled-name='_ZN5mongo15IdleThreadBlockC2EPKc' filepath='src/mongo/util/concurrency/idle_thread_block.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~IdleThreadBlock' mangled-name='_ZN5mongo15IdleThreadBlockD2Ev' filepath='src/mongo/util/concurrency/idle_thread_block.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__cast&lt;long, std::ratio&lt;1, 1000000000&gt; &gt;' mangled-name='_ZNSt6chrono20__duration_cast_implINS_8durationIlSt5ratioILl1ELl1EEEES2_ILl1ELl1000000000EElLb1ELb0EE6__castIlS5_EES4_RKNS1_IT_T0_EE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/chrono' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; &gt;' mangled-name='_ZNSt10_Head_baseILm0ESt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EELb0EEC2IS9_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; &gt;' mangled-name='_ZNSt11_Tuple_implILm0EJSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEEEC2IS9_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='361' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; , void&gt;' mangled-name='_ZNSt5tupleIJSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS3_EEEEC2IJS9_EvEEDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='__shared_ptr&lt;std::allocator&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;, std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt12__shared_ptrINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEELN9__gnu_cxx12_Lock_policyE2EEC2ISaISF_EJSE_EEESt19_Sp_make_shared_tagRKT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='1094' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Sp_counted_ptr_inplace&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EEC2IJSE_EEESG_DpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='517' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_M_ptr' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE6_M_ptrEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='555' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__shared_ptr&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, void&gt;' mangled-name='_ZNSt12__shared_ptrINSt6thread10_Impl_baseELN9__gnu_cxx12_Lock_policyE2EEC2INS0_5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPSB_EEvEEEEvEEOS_IT_LS3_2EE' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='940' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_ptr&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, void&gt;' mangled-name='_ZNSt10shared_ptrINSt6thread10_Impl_baseEEC2INS0_5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS9_EEvEEEEvEEOS_IT_E' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS7_EEvEEEEE9constructISG_JSF_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='destroy&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS7_EEvEEEEE7destroyISG_EEvPT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;' mangled-name='_ZNSt16allocator_traitsISaINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEEEE9constructISF_JSE_EEEvRSG_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='destroy&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;' mangled-name='_ZNSt16allocator_traitsISaINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEEEE7destroyISF_EEvRSG_PT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='541' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~__allocated_ptr' mangled-name='_ZNSt15__allocated_ptrISaISt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS7_EEvEEEESaISG_ELN9__gnu_cxx12_Lock_policyE2EEEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/allocated_ptr.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()&lt;, void&gt;' mangled-name='_ZNKSt12_Mem_fn_baseIMN5mongo14FTDCControllerEFvvELb1EEclIJEvEEvPS1_DpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/functional' line='599' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-145'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='LogComponent' mangled-name='_ZN5mongo6logger12LogComponentC2ENS1_5ValueE' filepath='src/mongo/logger/log_component.h' line='69' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-46'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::LittleEndian&lt;unsigned int&gt; &gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_12LittleEndianIjEEEENS_6StatusEPT_' filepath='src/mongo/base/data_range_cursor.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::LittleEndian&lt;unsigned int&gt; &gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_12LittleEndianIjEEEENS_10StatusWithIT_EEv' filepath='src/mongo/base/data_range_cursor.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='ConstDataRangeCursor' mangled-name='_ZN5mongo20ConstDataRangeCursorC2ENS_14ConstDataRangeE' filepath='src/mongo/base/data_range_cursor.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_10FTDCVarIntEEENS_10StatusWithIT_EEv' filepath='src/mongo/base/data_range_cursor.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_10FTDCVarIntEEENS_6StatusEPT_' filepath='src/mongo/base/data_range_cursor.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_9ValidatedINS_7BSONObjEEEEENS_6StatusEPT_' filepath='src/mongo/base/data_range_cursor.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readAndAdvance&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEv' filepath='src/mongo/base/data_range_cursor.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo20ConstDataRangeCursor14readAndAdvanceINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load' mangled-name='_ZN5mongo8DataType7HandlerIjvE4loadEPjPKcmPml' filepath='src/mongo/base/data_type.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-146'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerIjvE10unsafeLoadEPjPKcPm' filepath='src/mongo/base/data_type.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-146'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load&lt;unsigned int&gt;' mangled-name='_ZN5mongo8DataType4loadIjEENS_6StatusEPT_PKcmPml' filepath='src/mongo/base/data_type.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-146'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load' mangled-name='_ZN5mongo8DataType7HandlerINS_10FTDCVarIntEvE4loadEPS2_PKcmPml' filepath='src/mongo/base/data_type_endian.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8DataType7HandlerINS_9ValidatedINS_7BSONObjEEEvE4loadEPS4_PKcmPml'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load&lt;mongo::LittleEndian&lt;unsigned int&gt; &gt;' mangled-name='_ZN5mongo8DataType4loadINS_12LittleEndianIjEEEENS_6StatusEPT_PKcmPml' filepath='src/mongo/base/data_type.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load&lt;mongo::FTDCVarInt&gt;' mangled-name='_ZN5mongo8DataType4loadINS_10FTDCVarIntEEENS_6StatusEPT_PKcmPml' filepath='src/mongo/base/data_type.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='defaultConstruct' mangled-name='_ZN5mongo8DataType7HandlerINS_9ValidatedINS_7BSONObjEEEvE16defaultConstructEv' filepath='src/mongo/bson/bsonobj.h' line='772' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='defaultConstruct&lt;mongo::BSONObj&gt;' mangled-name='_ZN5mongo8DataType16defaultConstructINS_7BSONObjEEET_v' filepath='src/mongo/base/data_type.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='defaultConstruct&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZN5mongo8DataType16defaultConstructINS_9ValidatedINS_7BSONObjEEEEET_v' filepath='src/mongo/base/data_type.h' line='160' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZN5mongo8DataType4loadINS_9ValidatedINS_7BSONObjEEEEENS_6StatusEPT_PKcmPml' filepath='src/mongo/base/data_type.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='load&lt;mongo::BSONObj&gt;' mangled-name='_ZN5mongo8DataType4loadINS_7BSONObjEEENS_6StatusEPT_PKcmPml' filepath='src/mongo/base/data_type.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StatusWith' mangled-name='_ZN5mongo10StatusWithIbEC2ENS_10ErrorCodes5ErrorEPKc' filepath='src/mongo/base/status_with.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-46'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Validated' mangled-name='_ZN5mongo9ValidatedINS_7BSONObjEEC2Ev' filepath='src/mongo/base/data_type_validated.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Vector_impl' mangled-name='_ZNSt12_Vector_baseImSaImEE12_Vector_implC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='86' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Vector_base' mangled-name='_ZNSt12_Vector_baseImSaImEEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='private'>
+        <function-decl name='_M_create_storage' mangled-name='_ZNSt12_Vector_baseIN5mongo7BSONObjESaIS1_EE17_M_create_storageEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Vector_base' mangled-name='_ZNSt12_Vector_baseIN5mongo7BSONObjESaIS1_EEC2EmRKS2_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <parameter type-id='type-id-147'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~_Vector_base' mangled-name='_ZNSt12_Vector_baseIhSaIhEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='vector' mangled-name='_ZNSt6vectorImSaImEEC2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='reserve' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE7reserveEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE7reserveEm'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_allocate_and_copy&lt;std::move_iterator&lt;unsigned long *&gt; &gt;' mangled-name='_ZNSt6vectorImSaImEE20_M_allocate_and_copyISt13move_iteratorIPmEEES4_mT_S6_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1221' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='vector' mangled-name='_ZNSt6vectorImSaImEEC2EmRKS0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-147'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_default_initialize' mangled-name='_ZNSt6vectorImSaImEE21_M_default_initializeEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1308' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~vector' mangled-name='_ZNSt6vectorIhSaIhEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='423' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Vector_base' mangled-name='_ZNSt12_Vector_baseIN5mongo7BSONObjESaIS1_EEC2EOS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;mongo::BSONObj&gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE12emplace_backIJS1_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='vector' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEC2ERKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='318' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='end' mangled-name='_ZNKSt6vectorIN5mongo7BSONObjESaIS1_EE3endEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-62'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='vector' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEC2EOS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;mongo::BSONObj &amp;&gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE12emplace_backIJRS1_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='capacity' mangled-name='_ZNKSt6vectorIN5mongo7BSONObjESaIS1_EE8capacityEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='734' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-119'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_allocate_and_copy&lt;std::move_iterator&lt;mongo::BSONObj *&gt; &gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE20_M_allocate_and_copyISt13move_iteratorIPS1_EEES6_mT_S8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1221' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;mongo::BSONObj&gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;mongo::BSONObj &amp;&gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJRS1_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE19_M_emplace_back_auxIJRS1_EEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;mongo::BSONObj, mongo::BSONObj&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorIN5mongo7BSONObjEE9constructIS2_JS2_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;mongo::BSONObj, mongo::BSONObj &amp;&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorIN5mongo7BSONObjEE9constructIS2_JRS2_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;mongo::BSONObj, mongo::BSONObj&gt;' mangled-name='_ZNSt16allocator_traitsISaIN5mongo7BSONObjEEE9constructIS1_JS1_EEEvRS2_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;mongo::BSONObj, mongo::BSONObj &amp;&gt;' mangled-name='_ZNSt16allocator_traitsISaIN5mongo7BSONObjEEE9constructIS1_JRS1_EEEvRS2_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;__gnu_cxx::__normal_iterator&lt;const mongo::BSONObj *, std::vector&lt;mongo::BSONObj, std::allocator&lt;mongo::BSONObj&gt; &gt; &gt;, mongo::BSONObj *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKN5mongo7BSONObjESt6vectorIS5_SaIS5_EEEEPS5_EET0_T_SE_SD_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;mongo::BSONObj *&gt;, mongo::BSONObj *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPN5mongo7BSONObjEES5_EET0_T_S8_S7_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='address' mangled-name='_ZN5boost15optional_detail15aligned_storageISt6vectorIN5mongo7BSONObjESaIS4_EEE7addressEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-121'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get_object' mangled-name='_ZN5boost15optional_detail13optional_baseISt6vectorIN5mongo7BSONObjESaIS4_EEE10get_objectEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='726' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-148'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='get_impl' mangled-name='_ZN5boost15optional_detail13optional_baseISt6vectorIN5mongo7BSONObjESaIS4_EEE8get_implEv' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='711' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-68'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__destroy&lt;mongo::BSONObj *&gt;' mangled-name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5mongo7BSONObjEEEvT_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_construct.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='uncompress' mangled-name='_ZN5mongo16FTDCDecompressor10uncompressENS_14ConstDataRangeE' filepath='src/mongo/db/ftdc/decompressor.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo16FTDCDecompressor10uncompressENS_14ConstDataRangeE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='validateLoad' mangled-name='_ZN5mongo9ValidatorINS_7BSONObjEE12validateLoadEPKcm' filepath='src/mongo/rpc/object_check.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='path' mangled-name='_ZN5boost10filesystem4pathC2ERKS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='path' mangled-name='_ZN5boost10filesystem4pathC2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='path' mangled-name='_ZN5boost10filesystem4pathC2EOS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__normal_iterator' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS3_SaIS3_EEEC2ERKS4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-124'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator+' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS3_SaIS3_EEEplEl' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='793' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-91'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator-' mangled-name='_ZNK9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS3_SaIS3_EEEmiEl' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='801' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-91'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator--' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS3_SaIS3_EEEmmEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='773' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, __gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt; &gt;' mangled-name='_ZNK9__gnu_cxx5__ops15_Iter_less_iterclINS_17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS6_SaIS6_EEEESB_EEbT_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/predefined_ops.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()&lt;boost::filesystem::path, __gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt; &gt;' mangled-name='_ZNK9__gnu_cxx5__ops14_Val_less_iterclIN5boost10filesystem4pathENS_17__normal_iteratorIPS5_St6vectorIS5_SaIS5_EEEEEEbRT_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/predefined_ops.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Alloc_hider' mangled-name='_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC2EPcRKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-11'/>
+          <parameter type-id='type-id-24'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='path' mangled-name='_ZN5boost10filesystem4pathC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-149'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator/=' mangled-name='_ZN5boost10filesystem4pathdVERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-149'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator+=' mangled-name='_ZN5boost10filesystem4pathpLERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='265' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-149'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='swap' mangled-name='_ZN5boost10filesystem4path4swapERS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5boost10filesystem4pathaSEOS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='assign' mangled-name='_ZNSt11char_traitsIcE6assignERcRKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/char_traits.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-150'/>
+          <parameter type-id='type-id-151'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='copy' mangled-name='_ZNSt11char_traitsIcE4copyEPcPKcm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/char_traits.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-152'/>
+          <parameter type-id='type-id-153'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-152'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='length' mangled-name='_ZNSt11char_traitsIcE6lengthEPKc' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/char_traits.h' line='266' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-153'/>
+          <return type-id='type-id-29'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='FTDCFileManager' mangled-name='_ZN5mongo15FTDCFileManagerC2EPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionE' filepath='src/mongo/db/ftdc/file_manager.h' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManagerC2EPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-112'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='close' mangled-name='_ZN5mongo14FTDCFileWriter5closeEv' filepath='src/mongo/db/ftdc/file_manager.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager5closeEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~FTDCFileManager' mangled-name='_ZN5mongo15FTDCFileManagerD2Ev' filepath='src/mongo/db/ftdc/file_manager.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManagerD1Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='create' mangled-name='_ZN5mongo15FTDCFileManager6createEPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionEPNS_6ClientE' filepath='src/mongo/db/ftdc/file_manager.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager6createEPKNS_10FTDCConfigERKN5boost10filesystem4pathEPNS_23FTDCCollectorCollectionEPNS_6ClientE'>
+          <parameter type-id='type-id-112'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-154'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='scanDirectory' mangled-name='_ZN5mongo15FTDCFileManager13scanDirectoryEv' filepath='src/mongo/db/ftdc/file_manager.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager13scanDirectoryEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='recoverInterimFile' mangled-name='_ZN5mongo15FTDCFileManager18recoverInterimFileEv' filepath='src/mongo/db/ftdc/file_manager.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager18recoverInterimFileEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithIN5boost10filesystem4pathEE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='toString' mangled-name='_ZNK5mongo10StringData8toStringB5cxx11Ev' filepath='src/mongo/base/string_data.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-155'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='compare' mangled-name='_ZNK5mongo10StringData7compareES0_' filepath='src/mongo/base/string_data.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='generateArchiveFileName' mangled-name='_ZN5mongo15FTDCFileManager23generateArchiveFileNameERKN5boost10filesystem4pathENS_10StringDataE' filepath='src/mongo/db/ftdc/file_manager.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager23generateArchiveFileNameERKN5boost10filesystem4pathENS_10StringDataE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; &gt;' mangled-name='_ZNSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE12emplace_backIJS6_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; &gt;' mangled-name='_ZNSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE19_M_emplace_back_auxIJS6_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEESaIS6_EE19_M_emplace_back_auxIJS6_EEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='openArchiveFile' mangled-name='_ZN5mongo15FTDCFileManager15openArchiveFileEPNS_6ClientERKN5boost10filesystem4pathERKSt6vectorISt5tupleIJNS_12FTDCBSONUtil8FTDCTypeENS_7BSONObjENS_6Date_tEEESaISE_EE' filepath='src/mongo/db/ftdc/file_manager.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager15openArchiveFileEPNS_6ClientERKN5boost10filesystem4pathERKSt6vectorISt5tupleIJNS_12FTDCBSONUtil8FTDCTypeENS_7BSONObjENS_6Date_tEEESaISE_EE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-154'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;boost::filesystem::path&gt;' mangled-name='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE12emplace_backIJS2_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='rbegin' mangled-name='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE6rbeginEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='583' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-97'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;boost::filesystem::path&gt;' mangled-name='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE19_M_emplace_back_auxIJS2_EEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE19_M_emplace_back_auxIJS2_EEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='trimDirectory' mangled-name='_ZN5mongo15FTDCFileManager13trimDirectoryERSt6vectorIN5boost10filesystem4pathESaIS4_EE' filepath='src/mongo/db/ftdc/file_manager.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager13trimDirectoryERSt6vectorIN5boost10filesystem4pathESaIS4_EE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='rotate' mangled-name='_ZN5mongo15FTDCFileManager6rotateEPNS_6ClientE' filepath='src/mongo/db/ftdc/file_manager.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager6rotateEPNS_6ClientE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-154'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeSampleAndRotateIfNeeded' mangled-name='_ZN5mongo15FTDCFileManager28writeSampleAndRotateIfNeededEPNS_6ClientERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/file_manager.h' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo15FTDCFileManager28writeSampleAndRotateIfNeededEPNS_6ClientERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-154'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='FTDCFileWriter' mangled-name='_ZN5mongo14FTDCFileWriterC2EPKNS_10FTDCConfigE' filepath='src/mongo/db/ftdc/file_writer.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriterC2EPKNS_10FTDCConfigE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-112'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getSize' mangled-name='_ZNK5mongo14FTDCFileWriter7getSizeEv' filepath='src/mongo/db/ftdc/file_writer.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-29'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='error_code' mangled-name='_ZN5boost6system10error_codeC2Ev' filepath='src/third_party/boost-1.60.0/boost/system/error_code.hpp' line='322' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator void (*)()' mangled-name='_ZNK5boost6system10error_codecvPFvvEEv' filepath='src/third_party/boost-1.60.0/boost/system/error_code.hpp' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-98'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='message' mangled-name='_ZNK5boost6system10error_code7messageB5cxx11Ev' filepath='src/third_party/boost-1.60.0/boost/system/error_code.hpp' line='357' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-155'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='value' mangled-name='_ZNK5boost6system10error_code5valueEv' filepath='src/third_party/boost-1.60.0/boost/system/error_code.hpp' line='354' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [2]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA2_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-156'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__destroy&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; *&gt;' mangled-name='_ZNSt12_Destroy_auxILb0EE9__destroyIPSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS3_7BSONObjENS3_6Date_tEEEEEvT_SA_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_construct.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__destroy&lt;boost::filesystem::path *&gt;' mangled-name='_ZNSt12_Destroy_auxILb0EE9__destroyIPN5boost10filesystem4pathEEEvT_S6_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_construct.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt;, std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; &gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS2_7BSONObjENS2_6Date_tEEEE9constructIS7_JS7_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt;, std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; &gt;' mangled-name='_ZNSt16allocator_traitsISaISt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS1_7BSONObjENS1_6Date_tEEEEE9constructIS6_JS6_EEEvRS7_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;boost::filesystem::path, boost::filesystem::path&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorIN5boost10filesystem4pathEE9constructIS3_JS3_EEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;boost::filesystem::path, boost::filesystem::path&gt;' mangled-name='_ZNSt16allocator_traitsISaIN5boost10filesystem4pathEEE9constructIS2_JS2_EEEvRS3_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCFileManager *&gt;' mangled-name='_ZNSt10_Head_baseILm0EPN5mongo15FTDCFileManagerELb0EEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCFileManager *, std::default_delete&lt;mongo::FTDCFileManager&gt; , void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJPN5mongo15FTDCFileManagerESt14default_deleteIS1_EEEC2IS2_JS4_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::FTDCFileManager *, std::default_delete&lt;mongo::FTDCFileManager&gt;, void&gt;' mangled-name='_ZNSt5tupleIJPN5mongo15FTDCFileManagerESt14default_deleteIS1_EEEC2IS2_S4_vEEOT_OT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='612' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-144'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='dir_itr_imp' mangled-name='_ZN5boost10filesystem6detail11dir_itr_impC2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='860' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~dir_itr_imp' mangled-name='_ZN5boost10filesystem6detail11dir_itr_impD2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='866' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='get' mangled-name='_ZNK5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEE3getEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/shared_ptr.hpp' line='706' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-157'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_ptr&lt;boost::filesystem::detail::dir_itr_imp&gt;' mangled-name='_ZN5boost10shared_ptrINS_10filesystem6detail11dir_itr_impEEC2IS3_EEPT_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/shared_ptr.hpp' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='equal' mangled-name='_ZNK5boost10filesystem18directory_iterator5equalERKS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='941' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='directory_entry' mangled-name='_ZN5boost10filesystem15directory_entryC2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='749' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='directory_entry' mangled-name='_ZN5boost10filesystem15directory_entryC2ERKS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem15directory_entryC2ERKS1_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator*' mangled-name='_ZNK5boost9iterators6detail20iterator_facade_baseINS_10filesystem18directory_iteratorENS3_15directory_entryENS0_25single_pass_traversal_tagERS5_lLb0ELb0EEdeEv' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='653' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-103'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator++' mangled-name='_ZN5boost9iterators6detail20iterator_facade_baseINS_10filesystem18directory_iteratorENS3_15directory_entryENS0_25single_pass_traversal_tagERS5_lLb0ELb0EEppEv' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='663' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='dereference' mangled-name='_ZNK5boost10filesystem18directory_iterator11dereferenceEv' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='933' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-103'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='increment' mangled-name='_ZN5boost10filesystem18directory_iterator9incrementEv' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='939' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~directory_iterator' mangled-name='_ZN5boost10filesystem18directory_iteratorD2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='909' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='directory_iterator' mangled-name='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='901' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem18directory_iteratorC2ERKNS0_4pathE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='equal&lt;boost::filesystem::directory_iterator, boost::filesystem::directory_iterator&gt;' mangled-name='_ZN5boost9iterators20iterator_core_access5equalINS_10filesystem18directory_iteratorES4_EEbRKT_RKT0_N4mpl_5bool_ILb1EEE' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-158'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='dereference&lt;boost::filesystem::directory_iterator&gt;' mangled-name='_ZN5boost9iterators20iterator_core_access11dereferenceINS_10filesystem18directory_iteratorEEENT_9referenceERKS5_' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='547' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-103'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='increment&lt;boost::filesystem::directory_iterator&gt;' mangled-name='_ZN5boost9iterators20iterator_core_access9incrementINS_10filesystem18directory_iteratorEEEvRT_' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='553' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='postfix_increment_proxy' mangled-name='_ZN5boost9iterators6detail23postfix_increment_proxyINS_10filesystem18directory_iteratorEEC2ERKS4_' filepath='src/third_party/boost-1.60.0/boost/iterator/iterator_facade.hpp' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~shared_count' mangled-name='_ZN5boost6detail12shared_countD2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/shared_count.hpp' line='471' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_count' mangled-name='_ZN5boost6detail12shared_countC2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/shared_count.hpp' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='swap' mangled-name='_ZN5boost6detail12shared_count4swapERS1_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/shared_count.hpp' line='516' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='shared_count&lt;boost::filesystem::detail::dir_itr_imp&gt;' mangled-name='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/shared_count.hpp' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail12shared_countC2INS_10filesystem6detail11dir_itr_impEEEPT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='release' mangled-name='_ZN5boost6detail15sp_counted_base7releaseEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_base_clang.hpp' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='weak_release' mangled-name='_ZN5boost6detail15sp_counted_base12weak_releaseEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_base_clang.hpp' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='sp_counted_base' mangled-name='_ZN5boost6detail15sp_counted_baseC2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_base_clang.hpp' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsEm' filepath='src/mongo/logger/logstream_builder.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-28'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCBSONUtil::FTDCType &amp;, mongo::BSONObj, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo12FTDCBSONUtil8FTDCTypeENS0_7BSONObjENS0_6Date_tEEEC2IRS2_JS3_RS4_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-159'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::FTDCBSONUtil::FTDCType &amp;, mongo::BSONObj, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS0_7BSONObjENS0_6Date_tEEEC2IJRS2_S3_RS4_EvEEDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-159'/>
+          <parameter type-id='type-id-59'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='assign' mangled-name='_ZN5boost15optional_detail13optional_baseIbE6assignEOS2_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-59'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='assign_value' mangled-name='_ZN5boost15optional_detail13optional_baseIbE12assign_valueEObN4mpl_5bool_ILb0EEE' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-58'/>
+          <parameter type-id='type-id-132'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='_M_head' mangled-name='_ZNSt11_Tuple_implILm1EJRKN5mongo7BSONObjENS0_6Date_tEEE7_M_headERS5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCBSONUtil::FTDCType &amp;&gt;' mangled-name='_ZNSt10_Head_baseILm0EN5mongo12FTDCBSONUtil8FTDCTypeELb0EEC2IRS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-159'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::FTDCBSONUtil::FTDCType&gt;' mangled-name='_ZNSt10_Head_baseILm0EN5mongo12FTDCBSONUtil8FTDCTypeELb0EEC2IS2_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-160'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='file_status' mangled-name='_ZN5boost10filesystem11file_statusC2Ev' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='file_status' mangled-name='_ZN5boost10filesystem11file_statusC2ERKS1_' filepath='src/third_party/boost-1.60.0/boost/filesystem/operations.hpp' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BlockCompressor' mangled-name='_ZN5mongo15BlockCompressorC2Ev' filepath='src/mongo/db/ftdc/block_compressor.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='FTDCFileReader' mangled-name='_ZN5mongo14FTDCFileReaderC2Ev' filepath='src/mongo/db/ftdc/file_reader.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReaderC2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='FTDCCompressor' mangled-name='_ZN5mongo14FTDCCompressorC2EPKNS_10FTDCConfigE' filepath='src/mongo/db/ftdc/compressor.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCCompressorC2EPKNS_10FTDCConfigE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-112'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='sp_counted_impl_p' mangled-name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEEC2EPS4_' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_impl.hpp' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;boost::filesystem::path *&gt;, boost::filesystem::path *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPN5boost10filesystem4pathEES6_EET0_T_S9_S8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; *&gt;, std::tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj, mongo::Date_t&gt; *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyISt13move_iteratorIPSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeENS4_7BSONObjENS4_6Date_tEEEESA_EET0_T_SD_SC_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator()&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, boost::filesystem::path&gt;' mangled-name='_ZNK9__gnu_cxx5__ops14_Iter_less_valclINS_17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS6_SaIS6_EEEES6_EEbT_RT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/predefined_ops.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_move_b&lt;boost::filesystem::path *, boost::filesystem::path *&gt;' mangled-name='_ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIPN5boost10filesystem4pathES6_EET0_T_S8_S7_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='560' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='c_str' mangled-name='_ZNK5boost10filesystem4path5c_strEv' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='398' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-161'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='data' mangled-name='_ZNSt6vectorIcSaIcEE4dataEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_allocate_and_copy&lt;__gnu_cxx::__normal_iterator&lt;const mongo::BSONObj *, std::vector&lt;mongo::BSONObj, std::allocator&lt;mongo::BSONObj&gt; &gt; &gt; &gt;' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKS1_S3_EEEEPS1_mT_SB_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1221' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-48'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEaSERKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='436' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EEaSERKS3_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='__normal_iterator' mangled-name='_ZN9__gnu_cxx17__normal_iteratorIPN5mongo7BSONObjESt6vectorIS2_SaIS2_EEEC2ERKS3_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_iterator.h' line='740' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-124'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__destroy&lt;__gnu_cxx::__normal_iterator&lt;mongo::BSONObj *, std::vector&lt;mongo::BSONObj, std::allocator&lt;mongo::BSONObj&gt; &gt; &gt; &gt;' mangled-name='_ZNSt12_Destroy_auxILb0EE9__destroyIN9__gnu_cxx17__normal_iteratorIPN5mongo7BSONObjESt6vectorIS5_SaIS5_EEEEEEvT_SB_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_construct.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~FTDCFileReader' mangled-name='_ZN5mongo14FTDCFileReaderD2Ev' filepath='src/mongo/db/ftdc/file_reader.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReaderD2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='hasNext' mangled-name='_ZN5mongo14FTDCFileReader7hasNextEv' filepath='src/mongo/db/ftdc/file_reader.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReader7hasNextEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='readDocument' mangled-name='_ZN5mongo14FTDCFileReader12readDocumentEv' filepath='src/mongo/db/ftdc/file_reader.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReader12readDocumentEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='next' mangled-name='_ZN5mongo15BSONObjIterator4nextEv' filepath='src/mongo/db/ftdc/file_reader.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReader4nextEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='open' mangled-name='_ZN5mongo14FTDCFileWriter4openERKN5boost10filesystem4pathE' filepath='src/mongo/db/ftdc/file_reader.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileReader4openERKN5boost10filesystem4pathE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~vector' mangled-name='_ZNSt6vectorIcSaIcEED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIcSaIcEED2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~vector' mangled-name='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EED2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='423' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorIN5mongo7BSONObjESaIS1_EED2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StatusWith' mangled-name='_ZN5mongo10StatusWithIbEC2Eb' filepath='src/mongo/base/status_with.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-17'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithINS_12FTDCBSONUtil8FTDCTypeEE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-159'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [35]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA35_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-162'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [16]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA16_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-163'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [19]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA19_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-164'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZNK5mongo14ConstDataRange4readINS_9ValidatedINS_7BSONObjEEEEENS_6StatusEPT_m' filepath='src/mongo/base/data_range.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::Validated&lt;mongo::BSONObj&gt; &gt;' mangled-name='_ZNK5mongo14ConstDataRange4readINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEm' filepath='src/mongo/base/data_range.h' line='83' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK5mongo14ConstDataRange4readINS_9ValidatedINS_7BSONObjEEEEENS_10StatusWithIT_EEm'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;mongo::BSONObj *, mongo::BSONObj *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIPN5mongo7BSONObjES4_EET0_T_S6_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_m&lt;mongo::BSONObj *, mongo::BSONObj *&gt;' mangled-name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPN5mongo7BSONObjES5_EET0_T_S7_S6_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_m&lt;const mongo::BSONObj *, mongo::BSONObj *&gt;' mangled-name='_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE8__copy_mIPKN5mongo7BSONObjEPS4_EET0_T_S9_S8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112'/>
+          <parameter type-id='type-id-112'/>
+          <parameter type-id='type-id-114'/>
+          <return type-id='type-id-114'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::BSONObj &amp;, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm1EJRKN5mongo7BSONObjENS0_6Date_tEEEC2IRS1_JRS4_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Tuple_impl&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj &amp;, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt11_Tuple_implILm0EJN5mongo12FTDCBSONUtil8FTDCTypeERKNS0_7BSONObjENS0_6Date_tEEEC2IS2_JRS3_RS6_EvEEOT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-160'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='tuple&lt;mongo::FTDCBSONUtil::FTDCType, mongo::BSONObj &amp;, mongo::Date_t &amp;, void&gt;' mangled-name='_ZNSt5tupleIJN5mongo12FTDCBSONUtil8FTDCTypeERKNS0_7BSONObjENS0_6Date_tEEEC2IJS2_RS3_RS6_EvEEDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-160'/>
+          <parameter type-id='type-id-104'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_Head_base&lt;mongo::BSONObj &amp;&gt;' mangled-name='_ZNSt10_Head_baseILm1ERKN5mongo7BSONObjELb0EEC2IRS1_EEOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-104'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_default_n&lt;char *, unsigned long&gt;' mangled-name='_ZNSt27__uninitialized_default_n_1ILb1EE18__uninit_default_nIPcmEET_S3_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='535' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-28'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__copy_m&lt;char&gt;' mangled-name='_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIcEEPT_PKS3_S6_S4_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algobase.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-21'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='__uninit_copy&lt;std::move_iterator&lt;char *&gt;, char *&gt;' mangled-name='_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPcES3_EET0_T_S6_S5_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_uninitialized.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-21'/>
+          <return type-id='type-id-21'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes'>
+        <function-decl name='~FTDCFileWriter' mangled-name='_ZN5mongo14FTDCFileWriterD2Ev' filepath='src/mongo/db/ftdc/file_writer.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriterD2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeInterimFileBuffer' mangled-name='_ZN5mongo14FTDCFileWriter22writeInterimFileBufferENS_14ConstDataRangeE' filepath='src/mongo/db/ftdc/file_writer.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter22writeInterimFileBufferENS_14ConstDataRangeE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeArchiveFileBuffer' mangled-name='_ZN5mongo14FTDCFileWriter22writeArchiveFileBufferENS_14ConstDataRangeE' filepath='src/mongo/db/ftdc/file_writer.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter22writeArchiveFileBufferENS_14ConstDataRangeE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeMetadata' mangled-name='_ZN5mongo14FTDCFileWriter13writeMetadataERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/file_writer.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter13writeMetadataERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='writeSample' mangled-name='_ZN5mongo14FTDCFileWriter11writeSampleERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/file_writer.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter11writeSampleERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='optional' mangled-name='_ZN5boost8optionalIN5mongo14ConstDataRangeEEC2ENS_6none_tE' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='790' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseIN5mongo14ConstDataRangeEEC2ENS_6none_tE' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='construct' mangled-name='_ZN5boost15optional_detail13optional_baseIN5mongo14ConstDataRangeEE9constructERKS3_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='472' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-106'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='optional_base' mangled-name='_ZN5boost15optional_detail13optional_baseIN5mongo14ConstDataRangeEEC2ERKS3_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-106'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='optional' mangled-name='_ZN5boost8optionalIN5mongo14ConstDataRangeEEC2ERKS2_' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='794' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-108'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='flush' mangled-name='_ZN5mongo14FTDCFileWriter5flushERKN5boost8optionalINS_14ConstDataRangeEEENS_6Date_tE' filepath='src/mongo/db/ftdc/file_writer.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter5flushERKN5boost8optionalINS_14ConstDataRangeEEENS_6Date_tE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='closeWithoutFlushForTest' mangled-name='_ZN5mongo14FTDCFileWriter24closeWithoutFlushForTestEv' filepath='src/mongo/db/ftdc/file_writer.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14FTDCFileWriter24closeWithoutFlushForTestEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getSampleCount' mangled-name='_ZNK5mongo14FTDCCompressor14getSampleCountEv' filepath='src/mongo/db/ftdc/compressor.h' line='104' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-29'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='hasDataToFlush' mangled-name='_ZNK5mongo14FTDCCompressor14hasDataToFlushEv' filepath='src/mongo/db/ftdc/compressor.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [79]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA79_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-165'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='getValue' mangled-name='_ZN5mongo10StatusWithIN5boost8optionalISt5tupleIJNS_14ConstDataRangeENS_14FTDCCompressor15CompressorStateENS_6Date_tEEEEEE8getValueEv' filepath='src/mongo/base/status_with.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;unsigned int&gt;' mangled-name='_ZNSt6vectorImSaImEE12emplace_backIJjEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-166'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;long long&gt;' mangled-name='_ZNSt6vectorImSaImEE12emplace_backIJxEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-167'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='emplace_back&lt;bool&gt;' mangled-name='_ZNSt6vectorImSaImEE12emplace_backIJbEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='936' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-168'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;unsigned long, bool&gt;' mangled-name='_ZNSt16allocator_traitsISaImEE9constructImJbEEEvRS0_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-168'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;unsigned long, long long&gt;' mangled-name='_ZNSt16allocator_traitsISaImEE9constructImJxEEEvRS0_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-167'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='construct&lt;unsigned long, unsigned int&gt;' mangled-name='_ZNSt16allocator_traitsISaImEE9constructImJjEEEvRS0_PT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-120'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-166'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator[]' mangled-name='_ZNKSt6vectorImSaImEEixEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='794' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-119'/>
+          <return type-id='type-id-111'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;long long&gt;' mangled-name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJxEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJxEEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-167'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;bool&gt;' mangled-name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJbEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJbEEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-168'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='protected'>
+        <function-decl name='_M_emplace_back_aux&lt;unsigned int&gt;' mangled-name='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJjEEEvDpOT_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='1417' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6vectorImSaImEE19_M_emplace_back_auxIJjEEEvDpOT_'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-166'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='path' mangled-name='_ZN5boost10filesystem4pathC2EPKc' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-161'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='has_extension' mangled-name='_ZNK5boost10filesystem4path13has_extensionEv' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='519' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator=' mangled-name='_ZN5boost10filesystem4pathaSERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-149'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONObjIterator' mangled-name='_ZN5mongo15BSONObjIteratorC2ERKNS_7BSONObjE' filepath='src/mongo/bson/bsonobj.h' line='597' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='more' mangled-name='_ZN5mongo15BSONObjIterator4moreEv' filepath='src/mongo/bson/bsonobj.h' line='619' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerIxvE10unsafeLoadEPxPKcPm' filepath='src/mongo/base/data_type.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-169'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore' mangled-name='_ZN5mongo8DataType7HandlerIxvE11unsafeStoreERKxPcPm' filepath='src/mongo/base/data_type.h' line='87' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-170'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;long long&gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadIxEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-169'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;mongo::LittleEndian&lt;long long&gt; &gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadINS_12LittleEndianIxEEEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerIyvE10unsafeLoadEPyPKcPm' filepath='src/mongo/base/data_type.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-171'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;unsigned long long&gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadIyEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-171'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;mongo::LittleEndian&lt;unsigned long long&gt; &gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadINS_12LittleEndianIyEEEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad' mangled-name='_ZN5mongo8DataType7HandlerIavE10unsafeLoadEPaPKcPm' filepath='src/mongo/base/data_type.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-172'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeLoad&lt;signed char&gt;' mangled-name='_ZN5mongo8DataType10unsafeLoadIaEEvPT_PKcPm' filepath='src/mongo/base/data_type.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-172'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;long long&gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreIxEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-170'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='unsafeStore&lt;mongo::LittleEndian&lt;long long&gt; &gt;' mangled-name='_ZN5mongo8DataType11unsafeStoreINS_12LittleEndianIxEEEEvRKT_PcPm' filepath='src/mongo/base/data_type.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-130'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;long long&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIxEEEERKS0_PT_m' filepath='src/mongo/base/data_view.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;long long&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIxEEEET_m' filepath='src/mongo/base/data_view.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;unsigned long long&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIyEEEERKS0_PT_m' filepath='src/mongo/base/data_view.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-114'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;mongo::LittleEndian&lt;unsigned long long&gt; &gt;' mangled-name='_ZNK5mongo13ConstDataView4readINS_12LittleEndianIyEEEET_m' filepath='src/mongo/base/data_view.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;signed char&gt;' mangled-name='_ZNK5mongo13ConstDataView4readIaEERKS0_PT_m' filepath='src/mongo/base/data_view.h' line='50' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-172'/>
+          <parameter type-id='type-id-113'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='read&lt;signed char&gt;' mangled-name='_ZNK5mongo13ConstDataView4readIaEET_m' filepath='src/mongo/base/data_view.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-173'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsENS_10StringDataE' filepath='src/mongo/logger/logstream_builder.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo6logger16LogstreamBuilderlsEi' filepath='src/mongo/logger/logstream_builder.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONElement' mangled-name='_ZN5mongo11BSONElementC2Ev' filepath='src/mongo/bson/bsonelement.h' line='560' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='BSONElement' mangled-name='_ZN5mongo11BSONElementC2EPKc' filepath='src/mongo/bson/bsonelement.h' line='657' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='eoo' mangled-name='_ZNK5mongo11BSONElement3eooEv' filepath='src/mongo/bson/bsonelement.h' line='224' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fieldName' mangled-name='_ZNK5mongo11BSONElement9fieldNameEv' filepath='src/mongo/bson/bsonelement.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fieldNameStringData' mangled-name='_ZNK5mongo11BSONElement19fieldNameStringDataEv' filepath='src/mongo/bson/bsonelement.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-174'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='fieldNameSize' mangled-name='_ZNK5mongo11BSONElement13fieldNameSizeEv' filepath='src/mongo/bson/bsonelement.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='value' mangled-name='_ZNK5mongo11BSONElement5valueEv' filepath='src/mongo/bson/bsonelement.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='boolean' mangled-name='_ZNK5mongo11BSONElement7booleanEv' filepath='src/mongo/bson/bsonelement.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Bool' mangled-name='_ZNK5mongo11BSONElement4BoolEv' filepath='src/mongo/bson/bsonelement.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='type' mangled-name='_ZNK5mongo11BSONElement4typeEv' filepath='src/mongo/bson/bsonelement.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-175'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='isNumber' mangled-name='_ZNK5mongo11BSONElement8isNumberEv' filepath='src/mongo/bson/bsonelement.h' line='301' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-17'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='timestamp' mangled-name='_ZNK5mongo11BSONElement9timestampEv' filepath='src/mongo/bson/bsonelement.h' line='585' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='Date' mangled-name='_ZNK5mongo11BSONElement4DateEv' filepath='src/mongo/bson/bsonelement.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='date' mangled-name='_ZNK5mongo11BSONElement4dateEv' filepath='src/mongo/bson/bsonelement.h' line='291' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='binData' mangled-name='_ZNK5mongo11BSONElement7binDataERi' filepath='src/mongo/bson/bsonelement.h' line='446' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-176'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='valuestrsize' mangled-name='_ZNK5mongo11BSONElement12valuestrsizeEv' filepath='src/mongo/bson/bsonelement.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_numberDouble' mangled-name='_ZNK5mongo11BSONElement13_numberDoubleEv' filepath='src/mongo/bson/bsonelement.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-177'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_numberInt' mangled-name='_ZNK5mongo11BSONElement10_numberIntEv' filepath='src/mongo/bson/bsonelement.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-122'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_numberLong' mangled-name='_ZNK5mongo11BSONElement11_numberLongEv' filepath='src/mongo/bson/bsonelement.h' line='321' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-44'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_numberDecimal' mangled-name='_ZNK5mongo11BSONElement14_numberDecimalEv' filepath='src/mongo/bson/bsonelement.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='numberLong' mangled-name='_ZNK5mongo11BSONElement10numberLongEv' filepath='src/mongo/bson/bsonelement.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK5mongo11BSONElement10numberLongEv'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-44'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='chk' mangled-name='_ZNK5mongo11BSONElement3chkENS_8BSONTypeE' filepath='src/mongo/bson/bsonelement.h' line='692' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNK5mongo11BSONElement3chkENS_8BSONTypeE'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <parameter type-id='type-id-175'/>
+          <return type-id='type-id-107'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;unsigned long, bool&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorImE9constructImJbEEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-168'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;unsigned long, long long&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorImE9constructImJxEEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-167'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='construct&lt;unsigned long, unsigned int&gt;' mangled-name='_ZN9__gnu_cxx13new_allocatorImE9constructImJjEEEvPT_DpOT0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ext/new_allocator.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-137'/>
+          <parameter type-id='type-id-166'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNumImpl&lt;int&gt;' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE13appendNumImplIiEEvT_' filepath='src/mongo/bson/util/builder.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNum' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendNumEi' filepath='src/mongo/bson/util/builder.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='buf' mangled-name='_ZNK5mongo11_BufBuilderINS_21SharedBufferAllocatorEE3bufEv' filepath='src/mongo/bson/util/builder.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-16'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNumImpl&lt;long long&gt;' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE13appendNumImplIxEEvT_' filepath='src/mongo/bson/util/builder.h' line='334' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-44'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNum' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEE9appendNumEx' filepath='src/mongo/bson/util/builder.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-44'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataENS_9TimestampE' filepath='src/mongo/bson/bsonobjbuilder.h' line='437' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendNumber' mangled-name='_ZN5mongo14BSONObjBuilder12appendNumberENS_10StringDataEi' filepath='src/mongo/bson/bsonobjbuilder.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendObject' mangled-name='_ZN5mongo14BSONObjBuilder12appendObjectENS_10StringDataEPKci' filepath='src/mongo/bson/bsonobjbuilder.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder12appendObjectENS_10StringDataEPKci'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-16'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendBinData' mangled-name='_ZN5mongo14BSONObjBuilder13appendBinDataENS_10StringDataEiNS_11BinDataTypeEPKv' filepath='src/mongo/bson/bsonobjbuilder.h' line='563' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder13appendBinDataENS_10StringDataEiNS_11BinDataTypeEPKv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-122'/>
+          <parameter type-id='type-id-175'/>
+          <parameter type-id='type-id-121'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEx' filepath='src/mongo/bson/bsonobjbuilder.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEx'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-44'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEb' filepath='src/mongo/bson/bsonobjbuilder.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEb'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-17'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='subarrayStart' mangled-name='_ZN5mongo14BSONObjBuilder13subarrayStartENS_10StringDataE' filepath='src/mongo/bson/bsonobjbuilder.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder13subarrayStartENS_10StringDataE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <return type-id='type-id-128'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo14BSONObjBuilder6appendERKNS_11BSONElementE' filepath='src/mongo/bson/bsonobjbuilder.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder6appendERKNS_11BSONElementE'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='append' mangled-name='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEi' filepath='src/mongo/bson/bsonobjbuilder.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo14BSONObjBuilder6appendENS_10StringDataEi'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-22'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StringData' mangled-name='_ZN5mongo10StringDataC2EPKc' filepath='src/mongo/base/string_data.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo10StringDataC2EPKc'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-16'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='write&lt;mongo::LittleEndian&lt;long long&gt; &gt;' mangled-name='_ZN5mongo8DataView5writeINS_12LittleEndianIxEEEERS0_RKT_m' filepath='src/mongo/base/data_view.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-29'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='StatusWith' mangled-name='_ZN5mongo10StatusWithINS_12FTDCBSONUtil8FTDCTypeEEC2ES2_' filepath='src/mongo/base/status_with.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-178'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsEx' filepath='src/mongo/bson/util/builder.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-44'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEElsENS_8BSONTypeE' filepath='src/mongo/bson/util/builder.h' line='443' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-175'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='str' mangled-name='_ZNK5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE3strB5cxx11Ev' filepath='src/mongo/bson/util/builder.h' line='477' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-155'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='appendIntegral&lt;long long&gt;' mangled-name='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIxEERS2_T_i' filepath='src/mongo/bson/util/builder.h' line='498' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo17StringBuilderImplINS_21SharedBufferAllocatorEE14appendIntegralIxEERS2_T_i'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-44'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [8]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA8_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-179'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;long long&gt;' mangled-name='_ZN10mongoutils3str6streamlsIxEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-170'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator&lt;&lt;&lt;char [7]&gt;' mangled-name='_ZN10mongoutils3str6streamlsIA7_cEERS1_RKT_' filepath='src/mongo/util/mongoutils/str.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-180'/>
+          <return type-id='type-id-104'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='_BufBuilder' mangled-name='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEEC2Ei' filepath='src/mongo/bson/util/builder.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo11_BufBuilderINS_21SharedBufferAllocatorEEC2Ei'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-122'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' static='yes'>
+        <function-decl name='store' mangled-name='_ZN5mongo8DataType7HandlerINS_10FTDCVarIntEvE5storeERKS2_PcmPml' filepath='src/mongo/db/ftdc/varint.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8DataType7HandlerINS_10FTDCVarIntEvE5storeERKS2_PcmPml'>
+          <parameter type-id='type-id-107'/>
+          <parameter type-id='type-id-21'/>
+          <parameter type-id='type-id-113'/>
+          <parameter type-id='type-id-130'/>
+          <parameter type-id='type-id-27'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public'>
+        <function-decl name='operator unsigned long' mangled-name='_ZNK5mongo10FTDCVarIntcvmEv' filepath='src/mongo/db/ftdc/varint.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <parameter type-id='type-id-112' is-artificial='yes'/>
+          <return type-id='type-id-136'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes' vtable-offset='0'>
+        <function-decl name='~sp_counted_base' mangled-name='_ZN5boost6detail15sp_counted_baseD2Ev' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_base_clang.hpp' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail15sp_counted_baseD2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes' vtable-offset='0'>
+        <function-decl name='~_Sp_counted_ptr_inplace' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EED0Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EED2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes' vtable-offset='0'>
+        <function-decl name='~_Impl_base' mangled-name='_ZNSt6thread10_Impl_baseD0Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6thread10_Impl_baseD0Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' destructor='yes' vtable-offset='0'>
+        <function-decl name='~_Impl_base' mangled-name='_ZNSt6thread10_Impl_baseD2Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='101' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6thread10_Impl_baseD2Ev'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='2'>
+        <function-decl name='dispose' mangled-name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_impl.hpp' line='73' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE7disposeEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='2'>
+        <function-decl name='_M_dispose' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='529' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='2'>
+        <function-decl name='_M_run' mangled-name='_ZNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEE6_M_runEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS5_EEvEEE6_M_runEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='3'>
+        <function-decl name='destroy' mangled-name='_ZN5boost6detail15sp_counted_base7destroyEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_base_clang.hpp' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail15sp_counted_base7destroyEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='3'>
+        <function-decl name='_M_destroy' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='536' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='4'>
+        <function-decl name='get_deleter' mangled-name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_impl.hpp' line='81' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE11get_deleterERKSt9type_info'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-181'/>
+          <return type-id='type-id-121'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='4'>
+        <function-decl name='_M_get_deleter' mangled-name='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='545' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSt23_Sp_counted_ptr_inplaceINSt6thread5_ImplISt12_Bind_simpleIFSt5_BindIFSt7_Mem_fnIMN5mongo14FTDCControllerEFvvEEPS6_EEvEEEESaISF_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <parameter type-id='type-id-182'/>
+          <return type-id='type-id-121'/>
+        </function-decl>
+      </member-function>
+      <member-function access='public' vtable-offset='5'>
+        <function-decl name='get_untyped_deleter' mangled-name='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/detail/sp_counted_impl.hpp' line='86' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail17sp_counted_impl_pINS_10filesystem6detail11dir_itr_impEE19get_untyped_deleterEv'>
+          <parameter type-id='type-id-114' is-artificial='yes'/>
+          <return type-id='type-id-121'/>
+        </function-decl>
+      </member-function>
+    </class-decl>
+    <typedef-decl name='lldiv_t' type-id='type-id-22' filepath='/usr/include/stdlib.h' line='121' column='1' id='type-id-45'/>
+    <type-decl name='long long int' size-in-bits='64' id='type-id-44'/>
+
+    <type-decl name='void' id='type-id-6'/>
+    <pointer-type-def type-id='type-id-6' size-in-bits='64' id='type-id-121'/>
+    <type-decl name='int' size-in-bits='32' id='type-id-122'/>
+    <type-decl name='unsigned long int' size-in-bits='64' id='type-id-28'/>
+    <typedef-decl name='size_t' type-id='type-id-28' filepath='/usr/lib/llvm-3.9/bin/../lib/clang/3.9.1/include/stddef.h' line='62' column='1' id='type-id-113'/>
+    <function-decl name='memchr' filepath='/usr/include/string.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='memcmp' filepath='/usr/include/string.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-121' restrict='yes' id='type-id-183'/>
+    <function-decl name='memcpy' filepath='/usr/include/string.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-183'/>
+      <parameter type-id='type-id-183'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='memmove' filepath='/usr/include/string.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='memset' filepath='/usr/include/string.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <type-decl name='char' size-in-bits='8' id='type-id-96'/>
+    <pointer-type-def type-id='type-id-96' size-in-bits='64' id='type-id-21'/>
+    <qualified-type-def type-id='type-id-21' restrict='yes' id='type-id-184'/>
+    <qualified-type-def type-id='type-id-96' const='yes' id='type-id-185'/>
+    <pointer-type-def type-id='type-id-185' size-in-bits='64' id='type-id-16'/>
+    <qualified-type-def type-id='type-id-16' restrict='yes' id='type-id-186'/>
+    <function-decl name='strcat' filepath='/usr/include/string.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strcmp' filepath='/usr/include/string.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='strcoll' filepath='/usr/include/string.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='strcpy' filepath='/usr/include/string.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strcspn' filepath='/usr/include/string.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='strerror' filepath='/usr/include/string.h' line='408' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strlen' filepath='/usr/include/string.h' line='394' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='strncat' filepath='/usr/include/string.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strncmp' filepath='/usr/include/string.h' line='143' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='strncpy' filepath='/usr/include/string.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strspn' filepath='/usr/include/string.h' line='284' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='strtok' filepath='/usr/include/string.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strxfrm' filepath='/usr/include/string.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='strchr' filepath='/usr/include/string.h' line='231' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strpbrk' filepath='/usr/include/string.h' line='310' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strrchr' filepath='/usr/include/string.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='strstr' filepath='/usr/include/string.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <type-decl name='unsigned int' size-in-bits='32' id='type-id-55'/>
+    <typedef-decl name='wint_t' type-id='type-id-55' filepath='/usr/lib/llvm-3.9/bin/../lib/clang/3.9.1/include/stddef.h' line='132' column='1' id='type-id-187'/>
+    <function-decl name='btowc' filepath='/usr/include/wchar.h' line='391' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <typedef-decl name='__FILE' type-id='type-id-22' filepath='/usr/include/stdio.h' line='64' column='1' id='type-id-188'/>
+    <pointer-type-def type-id='type-id-188' size-in-bits='64' id='type-id-189'/>
+    <function-decl name='fgetwc' filepath='/usr/include/wchar.h' line='748' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-189'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <type-decl name='wchar_t' size-in-bits='32' id='type-id-190'/>
+    <pointer-type-def type-id='type-id-190' size-in-bits='64' id='type-id-191'/>
+    <qualified-type-def type-id='type-id-191' restrict='yes' id='type-id-192'/>
+    <qualified-type-def type-id='type-id-189' restrict='yes' id='type-id-193'/>
+    <function-decl name='fgetws' filepath='/usr/include/wchar.h' line='777' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-193'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='fputwc' filepath='/usr/include/wchar.h' line='762' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-190'/>
+      <parameter type-id='type-id-189'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-190' const='yes' id='type-id-194'/>
+    <pointer-type-def type-id='type-id-194' size-in-bits='64' id='type-id-195'/>
+    <qualified-type-def type-id='type-id-195' restrict='yes' id='type-id-196'/>
+    <function-decl name='fputws' filepath='/usr/include/wchar.h' line='784' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-193'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fwide' filepath='/usr/include/wchar.h' line='590' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-189'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fwprintf' filepath='/usr/include/wchar.h' line='597' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-193'/>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fwscanf' filepath='/usr/include/wchar.h' line='638' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-193'/>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='getwc' filepath='/usr/include/wchar.h' line='749' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-189'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='getwchar' filepath='/usr/include/wchar.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <typedef-decl name='__mbstate_t' type-id='type-id-22' filepath='/usr/include/wchar.h' line='94' column='1' id='type-id-197'/>
+    <typedef-decl name='mbstate_t' type-id='type-id-197' filepath='/usr/include/wchar.h' line='106' column='1' id='type-id-198'/>
+    <pointer-type-def type-id='type-id-198' size-in-bits='64' id='type-id-199'/>
+    <qualified-type-def type-id='type-id-199' restrict='yes' id='type-id-200'/>
+    <function-decl name='mbrlen' filepath='/usr/include/wchar.h' line='402' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-200'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='mbrtowc' filepath='/usr/include/wchar.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-200'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-198' const='yes' id='type-id-201'/>
+    <pointer-type-def type-id='type-id-201' size-in-bits='64' id='type-id-202'/>
+    <function-decl name='mbsinit' filepath='/usr/include/wchar.h' line='364' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-202'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-203'/>
+    <qualified-type-def type-id='type-id-203' restrict='yes' id='type-id-204'/>
+    <function-decl name='mbsrtowcs' filepath='/usr/include/wchar.h' line='411' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-204'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-200'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='putwc' filepath='/usr/include/wchar.h' line='763' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-190'/>
+      <parameter type-id='type-id-189'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='putwchar' filepath='/usr/include/wchar.h' line='769' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-190'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='swprintf' filepath='/usr/include/wchar.h' line='607' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='swscanf' filepath='/usr/include/wchar.h' line='648' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ungetwc' filepath='/usr/include/wchar.h' line='792' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <parameter type-id='type-id-189'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-22' size-in-bits='64' id='type-id-114'/>
+    <function-decl name='vfwprintf' filepath='/usr/include/wchar.h' line='615' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-193'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vfwscanf' filepath='/usr/include/wchar.h' line='692' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-193'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vswprintf' filepath='/usr/include/wchar.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vswscanf' filepath='/usr/include/wchar.h' line='704' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vwprintf' filepath='/usr/include/wchar.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vwscanf' filepath='/usr/include/wchar.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcrtomb' filepath='/usr/include/wchar.h' line='373' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-190'/>
+      <parameter type-id='type-id-200'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wcscat' filepath='/usr/include/wchar.h' line='157' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcscmp' filepath='/usr/include/wchar.h' line='166' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcscoll' filepath='/usr/include/wchar.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcscpy' filepath='/usr/include/wchar.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcscspn' filepath='/usr/include/wchar.h' line='255' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <class-decl name='tm' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-205'/>
+    <qualified-type-def type-id='type-id-205' const='yes' id='type-id-206'/>
+    <pointer-type-def type-id='type-id-206' size-in-bits='64' id='type-id-207'/>
+    <qualified-type-def type-id='type-id-207' restrict='yes' id='type-id-208'/>
+    <function-decl name='wcsftime' filepath='/usr/include/wchar.h' line='858' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-208'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wcslen' filepath='/usr/include/wchar.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wcsncat' filepath='/usr/include/wchar.h' line='161' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcsncmp' filepath='/usr/include/wchar.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcsncpy' filepath='/usr/include/wchar.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-195' size-in-bits='64' id='type-id-209'/>
+    <qualified-type-def type-id='type-id-209' restrict='yes' id='type-id-210'/>
+    <function-decl name='wcsrtombs' filepath='/usr/include/wchar.h' line='417' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-210'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-200'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wcsspn' filepath='/usr/include/wchar.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <type-decl name='double' size-in-bits='64' id='type-id-177'/>
+    <pointer-type-def type-id='type-id-191' size-in-bits='64' id='type-id-211'/>
+    <qualified-type-def type-id='type-id-211' restrict='yes' id='type-id-212'/>
+    <function-decl name='wcstod' filepath='/usr/include/wchar.h' line='453' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <type-decl name='float' size-in-bits='32' id='type-id-213'/>
+    <function-decl name='wcstof' filepath='/usr/include/wchar.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='wcstok' filepath='/usr/include/wchar.h' line='285' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <type-decl name='long int' size-in-bits='64' id='type-id-26'/>
+    <function-decl name='wcstol' filepath='/usr/include/wchar.h' line='471' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='wcstoul' filepath='/usr/include/wchar.h' line='476' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-28'/>
+    </function-decl>
+    <function-decl name='wcsxfrm' filepath='/usr/include/wchar.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wctob' filepath='/usr/include/wchar.h' line='397' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wmemcmp' filepath='/usr/include/wchar.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wmemcpy' filepath='/usr/include/wchar.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wmemmove' filepath='/usr/include/wchar.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-191'/>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wmemset' filepath='/usr/include/wchar.h' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-191'/>
+      <parameter type-id='type-id-190'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wprintf' filepath='/usr/include/wchar.h' line='604' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wscanf' filepath='/usr/include/wchar.h' line='645' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcschr' filepath='/usr/include/wchar.h' line='230' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-190'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcspbrk' filepath='/usr/include/wchar.h' line='269' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcsrchr' filepath='/usr/include/wchar.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-190'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wcsstr' filepath='/usr/include/wchar.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-195'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <function-decl name='wmemchr' filepath='/usr/include/wchar.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-195'/>
+      <parameter type-id='type-id-190'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-191'/>
+    </function-decl>
+    <type-decl name='long double' size-in-bits='128' id='type-id-214'/>
+    <function-decl name='wcstold' filepath='/usr/include/wchar.h' line='462' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='wcstoll' filepath='/usr/include/wchar.h' line='486' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <type-decl name='long long unsigned int' size-in-bits='64' id='type-id-215'/>
+    <function-decl name='wcstoull' filepath='/usr/include/wchar.h' line='493' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-215'/>
+    </function-decl>
+    <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <class-decl name='lconv' size-in-bits='768' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-216'/>
+    <pointer-type-def type-id='type-id-216' size-in-bits='64' id='type-id-217'/>
+    <function-decl name='localeconv' filepath='/usr/include/locale.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-217'/>
+    </function-decl>
+    <function-decl name='isalnum' filepath='/usr/include/ctype.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isalpha' filepath='/usr/include/ctype.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iscntrl' filepath='/usr/include/ctype.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isdigit' filepath='/usr/include/ctype.h' line='113' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isgraph' filepath='/usr/include/ctype.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='islower' filepath='/usr/include/ctype.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isprint' filepath='/usr/include/ctype.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ispunct' filepath='/usr/include/ctype.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isspace' filepath='/usr/include/ctype.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isupper' filepath='/usr/include/ctype.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isxdigit' filepath='/usr/include/ctype.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='tolower' filepath='/usr/include/ctype.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='toupper' filepath='/usr/include/ctype.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='isblank' filepath='/usr/include/ctype.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='abort' filepath='/usr/include/stdlib.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='abs' filepath='/usr/include/stdlib.h' line='774' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-99'/>
+    <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='519' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-99'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='at_quick_exit' filepath='/usr/include/stdlib.h' line='524' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-99'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='atof' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib-float.h' line='26' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='atoi' filepath='/usr/include/stdlib.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='atol' filepath='/usr/include/stdlib.h' line='283' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-219' size-in-bits='64' id='type-id-220'/>
+    <typedef-decl name='__compar_fn_t' type-id='type-id-220' filepath='/usr/include/stdlib.h' line='741' column='1' id='type-id-221'/>
+    <function-decl name='bsearch' filepath='/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h' line='20' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-221'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='calloc' filepath='/usr/include/stdlib.h' line='468' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <typedef-decl name='div_t' type-id='type-id-22' filepath='/usr/include/stdlib.h' line='101' column='1' id='type-id-222'/>
+    <function-decl name='div' filepath='/usr/include/stdlib.h' line='788' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-222'/>
+    </function-decl>
+    <function-decl name='exit' filepath='/usr/include/stdlib.h' line='543' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='free' filepath='/usr/include/stdlib.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='getenv' filepath='/usr/include/stdlib.h' line='564' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='labs' filepath='/usr/include/stdlib.h' line='775' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-26'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <typedef-decl name='ldiv_t' type-id='type-id-22' filepath='/usr/include/stdlib.h' line='109' column='1' id='type-id-223'/>
+    <function-decl name='ldiv' filepath='/usr/include/stdlib.h' line='790' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-26'/>
+      <parameter type-id='type-id-26'/>
+      <return type-id='type-id-223'/>
+    </function-decl>
+    <function-decl name='malloc' filepath='/usr/include/stdlib.h' line='466' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='mblen' filepath='/usr/include/stdlib.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='mbstowcs' filepath='/usr/include/stdlib.h' line='873' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='mbtowc' filepath='/usr/include/stdlib.h' line='865' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='qsort' filepath='/usr/include/stdlib.h' line='764' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-221'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='quick_exit' filepath='/usr/include/stdlib.h' line='549' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='rand' filepath='/usr/include/stdlib.h' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='realloc' filepath='/usr/include/stdlib.h' line='480' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-121'/>
+    </function-decl>
+    <function-decl name='srand' filepath='/usr/include/stdlib.h' line='376' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-55'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-21' size-in-bits='64' id='type-id-224'/>
+    <qualified-type-def type-id='type-id-224' restrict='yes' id='type-id-225'/>
+    <function-decl name='strtod' filepath='/usr/include/stdlib.h' line='164' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='strtol' filepath='/usr/include/stdlib.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='strtoul' filepath='/usr/include/stdlib.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-28'/>
+    </function-decl>
+    <function-decl name='system' filepath='/usr/include/stdlib.h' line='716' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='wcstombs' filepath='/usr/include/stdlib.h' line='876' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='wctomb' filepath='/usr/include/stdlib.h' line='869' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-21'/>
+      <parameter type-id='type-id-190'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='_Exit' filepath='/usr/include/stdlib.h' line='557' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='llabs' filepath='/usr/include/stdlib.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-44'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='lldiv' filepath='/usr/include/stdlib.h' line='796' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-44'/>
+      <parameter type-id='type-id-44'/>
+      <return type-id='type-id-45'/>
+    </function-decl>
+    <function-decl name='atoll' filepath='/usr/include/stdlib.h' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='strtoll' filepath='/usr/include/stdlib.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='strtoull' filepath='/usr/include/stdlib.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-215'/>
+    </function-decl>
+    <function-decl name='strtof' filepath='/usr/include/stdlib.h' line='172' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='strtold' filepath='/usr/include/stdlib.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <typedef-decl name='FILE' type-id='type-id-22' filepath='/usr/include/stdio.h' line='48' column='1' id='type-id-226'/>
+    <pointer-type-def type-id='type-id-226' size-in-bits='64' id='type-id-227'/>
+    <function-decl name='clearerr' filepath='/usr/include/stdio.h' line='826' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='fclose' filepath='/usr/include/stdio.h' line='237' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='feof' filepath='/usr/include/stdio.h' line='828' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ferror' filepath='/usr/include/stdio.h' line='830' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fflush' filepath='/usr/include/stdio.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fgetc' filepath='/usr/include/stdio.h' line='531' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-227' restrict='yes' id='type-id-228'/>
+    <typedef-decl name='_G_fpos_t' type-id='type-id-22' filepath='/usr/include/_G_config.h' line='25' column='1' id='type-id-229'/>
+    <typedef-decl name='fpos_t' type-id='type-id-229' filepath='/usr/include/stdio.h' line='110' column='1' id='type-id-230'/>
+    <pointer-type-def type-id='type-id-230' size-in-bits='64' id='type-id-231'/>
+    <qualified-type-def type-id='type-id-231' restrict='yes' id='type-id-232'/>
+    <function-decl name='fgetpos' filepath='/usr/include/stdio.h' line='798' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-232'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fgets' filepath='/usr/include/stdio.h' line='622' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-228'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='fopen' filepath='/usr/include/stdio.h' line='272' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-186'/>
+      <return type-id='type-id-227'/>
+    </function-decl>
+    <function-decl name='fprintf' filepath='/usr/include/stdio.h' line='356' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fputc' filepath='/usr/include/stdio.h' line='573' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fputs' filepath='/usr/include/stdio.h' line='689' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-228'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fread' filepath='/usr/include/stdio.h' line='709' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-183'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-228'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='freopen' filepath='/usr/include/stdio.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-228'/>
+      <return type-id='type-id-227'/>
+    </function-decl>
+    <function-decl name='fscanf' filepath='/usr/include/stdio.h' line='425' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='fseek' filepath='/usr/include/stdio.h' line='749' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <parameter type-id='type-id-26'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-230' const='yes' id='type-id-233'/>
+    <pointer-type-def type-id='type-id-233' size-in-bits='64' id='type-id-234'/>
+    <function-decl name='fsetpos' filepath='/usr/include/stdio.h' line='803' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <parameter type-id='type-id-234'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ftell' filepath='/usr/include/stdio.h' line='754' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='fwrite' filepath='/usr/include/stdio.h' line='715' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-183'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-228'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='getc' filepath='/usr/include/stdio.h' line='532' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='getchar' filepath='/usr/include/x86_64-linux-gnu/bits/stdio.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='perror' filepath='/usr/include/stdio.h' line='846' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='printf' filepath='/usr/include/stdio.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='putc' filepath='/usr/include/stdio.h' line='574' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='putchar' filepath='/usr/include/x86_64-linux-gnu/bits/stdio.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='puts' filepath='/usr/include/stdio.h' line='695' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='remove' filepath='/usr/include/stdio.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='rename' filepath='/usr/include/stdio.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='rewind' filepath='/usr/include/stdio.h' line='759' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='scanf' filepath='/usr/include/stdio.h' line='431' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='setbuf' filepath='/usr/include/stdio.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-184'/>
+      <return type-id='type-id-6'/>
+    </function-decl>
+    <function-decl name='setvbuf' filepath='/usr/include/stdio.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='sprintf' filepath='/usr/include/stdio.h' line='364' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='sscanf' filepath='/usr/include/stdio.h' line='433' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='tmpfile' filepath='/usr/include/stdio.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-227'/>
+    </function-decl>
+    <function-decl name='tmpnam' filepath='/usr/include/stdio.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-21'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='ungetc' filepath='/usr/include/stdio.h' line='702' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-122'/>
+      <parameter type-id='type-id-227'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vfprintf' filepath='/usr/include/stdio.h' line='371' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vprintf' filepath='/usr/include/x86_64-linux-gnu/bits/stdio.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vsprintf' filepath='/usr/include/stdio.h' line='379' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='snprintf' filepath='/usr/include/stdio.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-186'/>
+      <parameter is-variadic='yes'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vfscanf' filepath='/usr/include/stdio.h' line='471' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-228'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vscanf' filepath='/usr/include/stdio.h' line='479' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vsnprintf' filepath='/usr/include/stdio.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='vsscanf' filepath='/usr/include/stdio.h' line='483' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='acos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='asin' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='atan' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='atan2' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='ceil' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='cos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='cosh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='72' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='exp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fabs' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='181' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='floor' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fmod' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-122' size-in-bits='64' id='type-id-131'/>
+    <function-decl name='frexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='103' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-131'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='ldexp' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='106' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='log' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='log10' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-177' size-in-bits='64' id='type-id-235'/>
+    <function-decl name='modf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-235'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='pow' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='sin' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='sinh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='sqrt' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='tan' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='tanh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='acosh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='acoshf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='acoshl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='asinh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='asinhf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='asinhl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='atanh' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='atanhf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='atanhl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='cbrt' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='cbrtf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='cbrtl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='169' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='copysign' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='copysignf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='copysignl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='erf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='erff' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='erfl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='259' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='erfc' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='erfcf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='erfcl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='exp2' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='exp2f' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='exp2l' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='expm1' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='expm1f' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='expm1l' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='fdim' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fdimf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='fdiml' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='347' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='fma' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fmaf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='fmal' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='fmax' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fmaxf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='fmaxl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='fmin' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='fminf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='fminl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='hypot' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='hypotf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='hypotl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='ilogb' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ilogbf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='ilogbl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='lgamma' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='lgammaf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='lgammal' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='llrint' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='llrintf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='llrintl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='337' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='llround' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='llroundf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='llroundl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-44'/>
+    </function-decl>
+    <function-decl name='log1p' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='log1pf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='log1pl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='log2' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='log2f' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='log2l' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='logb' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='logbf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='logbl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='lrint' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='lrintf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='lrintl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='335' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='lround' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='lroundf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='lroundl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='341' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-26'/>
+    </function-decl>
+    <function-decl name='nan' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='nanf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='nanl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='228' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='nearbyint' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='nearbyintf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='nearbyintl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='nextafter' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='nextafterf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='nextafterl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='292' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='nexttoward' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='nexttowardf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='nexttowardl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='294' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='remainder' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='remainderf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='remainderl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='remquo' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-131'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='remquof' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-131'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='remquol' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-131'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='rint' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='rintf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='rintl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='289' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='round' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='roundf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='roundl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='319' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='scalbln' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-26'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='scalblnf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-26'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='scalblnl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-26'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='scalbn' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='scalbnf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='scalbnl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='302' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='tgamma' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='tgammaf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='tgammal' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='268' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='trunc' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-177'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='truncf' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-213'/>
+      <return type-id='type-id-213'/>
+    </function-decl>
+    <function-decl name='truncl' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-214'/>
+      <return type-id='type-id-214'/>
+    </function-decl>
+    <function-decl name='iswalnum' filepath='/usr/include/wctype.h' line='111' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswalpha' filepath='/usr/include/wctype.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswblank' filepath='/usr/include/wctype.h' line='162' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswcntrl' filepath='/usr/include/wctype.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <typedef-decl name='wctype_t' type-id='type-id-28' filepath='/usr/include/wctype.h' line='52' column='1' id='type-id-236'/>
+    <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <parameter type-id='type-id-236'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswdigit' filepath='/usr/include/wctype.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswgraph' filepath='/usr/include/wctype.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswlower' filepath='/usr/include/wctype.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswprint' filepath='/usr/include/wctype.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswpunct' filepath='/usr/include/wctype.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswspace' filepath='/usr/include/wctype.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswupper' filepath='/usr/include/wctype.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <function-decl name='iswxdigit' filepath='/usr/include/wctype.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-122'/>
+    </function-decl>
+    <typedef-decl name='__int32_t' type-id='type-id-122' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='40' column='1' id='type-id-237'/>
+    <qualified-type-def type-id='type-id-237' const='yes' id='type-id-238'/>
+    <pointer-type-def type-id='type-id-238' size-in-bits='64' id='type-id-239'/>
+    <typedef-decl name='wctrans_t' type-id='type-id-239' filepath='/usr/include/wctype.h' line='186' column='1' id='type-id-240'/>
+    <function-decl name='towctrans' filepath='/usr/include/wctype.h' line='221' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <parameter type-id='type-id-240'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='towlower' filepath='/usr/include/wctype.h' line='194' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='towupper' filepath='/usr/include/wctype.h' line='197' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-187'/>
+      <return type-id='type-id-187'/>
+    </function-decl>
+    <function-decl name='wctrans' filepath='/usr/include/wctype.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-240'/>
+    </function-decl>
+    <function-decl name='wctype' filepath='/usr/include/wctype.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <return type-id='type-id-236'/>
+    </function-decl>
+    <typedef-decl name='intmax_t' type-id='type-id-26' filepath='/usr/include/stdint.h' line='134' column='1' id='type-id-241'/>
+    <function-decl name='imaxabs' filepath='/usr/include/inttypes.h' line='290' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-241'/>
+      <return type-id='type-id-241'/>
+    </function-decl>
+    <typedef-decl name='imaxdiv_t' type-id='type-id-22' filepath='/usr/include/inttypes.h' line='275' column='1' id='type-id-242'/>
+    <function-decl name='imaxdiv' filepath='/usr/include/inttypes.h' line='293' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-241'/>
+      <parameter type-id='type-id-241'/>
+      <return type-id='type-id-242'/>
+    </function-decl>
+    <function-decl name='strtoimax' filepath='/usr/include/inttypes.h' line='324' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-241'/>
+    </function-decl>
+    <typedef-decl name='uintmax_t' type-id='type-id-28' filepath='/usr/include/stdint.h' line='135' column='1' id='type-id-243'/>
+    <function-decl name='strtoumax' filepath='/usr/include/inttypes.h' line='336' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-225'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-243'/>
+    </function-decl>
+    <function-decl name='wcstoimax' filepath='/usr/include/inttypes.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-241'/>
+    </function-decl>
+    <function-decl name='wcstoumax' filepath='/usr/include/inttypes.h' line='362' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-212'/>
+      <parameter type-id='type-id-122'/>
+      <return type-id='type-id-243'/>
+    </function-decl>
+
+    <qualified-type-def type-id='type-id-22' const='yes' id='type-id-174'/>
+    <pointer-type-def type-id='type-id-174' size-in-bits='64' id='type-id-112'/>
+    <type-decl name='unnamed-enum-underlying-type' is-anonymous='yes' id='type-id-8'/>
+    <reference-type-def kind='lvalue' type-id='type-id-22' size-in-bits='64' id='type-id-104'/>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='200' id='type-id-244'>
+      <subrange length='25'/>
+    </array-type-def>
+    <qualified-type-def type-id='type-id-244' const='yes' id='type-id-245'/>
+    <reference-type-def kind='lvalue' type-id='type-id-245' size-in-bits='64' id='type-id-115'/>
+    <qualified-type-def type-id='type-id-122' const='yes' id='type-id-246'/>
+    <reference-type-def kind='lvalue' type-id='type-id-246' size-in-bits='64' id='type-id-116'/>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='168' id='type-id-247'>
+      <subrange length='21'/>
+    </array-type-def>
+    <qualified-type-def type-id='type-id-247' const='yes' id='type-id-248'/>
+    <reference-type-def kind='lvalue' type-id='type-id-248' size-in-bits='64' id='type-id-117'/>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='192' id='type-id-249'>
+      <subrange length='24'/>
+    </array-type-def>
+    <qualified-type-def type-id='type-id-249' const='yes' id='type-id-250'/>
+    <reference-type-def kind='lvalue' type-id='type-id-250' size-in-bits='64' id='type-id-118'/>
+    <reference-type-def kind='lvalue' type-id='type-id-174' size-in-bits='64' id='type-id-107'/>
+    <typedef-decl name='size_type' type-id='type-id-29' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_vector.h' line='236' column='1' id='type-id-119'/>
+    <type-decl name='unsigned char' size-in-bits='8' id='type-id-251'/>
+    <pointer-type-def type-id='type-id-251' size-in-bits='64' id='type-id-49'/>
+    <reference-type-def kind='lvalue' type-id='type-id-50' size-in-bits='64' id='type-id-120'/>
+    <reference-type-def kind='rvalue' type-id='type-id-22' size-in-bits='64' id='type-id-59'/>
+    <type-decl name='bool' size-in-bits='8' id='type-id-17'/>
+    <qualified-type-def type-id='type-id-251' const='yes' id='type-id-252'/>
+    <pointer-type-def type-id='type-id-252' size-in-bits='64' id='type-id-123'/>
+    <qualified-type-def type-id='type-id-3' const='yes' id='type-id-253'/>
+    <pointer-type-def type-id='type-id-253' size-in-bits='64' id='type-id-15'/>
+    <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-18'/>
+    <qualified-type-def type-id='type-id-1' const='yes' id='type-id-254'/>
+    <pointer-type-def type-id='type-id-254' size-in-bits='64' id='type-id-4'/>
+    <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-5'/>
+    <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-33'/>
+    <pointer-type-def type-id='type-id-34' size-in-bits='64' id='type-id-37'/>
+    <pointer-type-def type-id='type-id-38' size-in-bits='64' id='type-id-39'/>
+    <pointer-type-def type-id='type-id-40' size-in-bits='64' id='type-id-43'/>
+    <reference-type-def kind='lvalue' type-id='type-id-255' size-in-bits='64' id='type-id-124'/>
+    <reference-type-def kind='rvalue' type-id='type-id-114' size-in-bits='64' id='type-id-144'/>
+    <pointer-type-def type-id='type-id-86' size-in-bits='64' id='type-id-145'/>
+    <reference-type-def kind='rvalue' type-id='type-id-46' size-in-bits='64' id='type-id-134'/>
+    <reference-type-def kind='lvalue' type-id='type-id-95' size-in-bits='64' id='type-id-150'/>
+    <pointer-type-def type-id='type-id-95' size-in-bits='64' id='type-id-152'/>
+    <pointer-type-def type-id='type-id-102' size-in-bits='64' id='type-id-157'/>
+    <pointer-type-def type-id='type-id-89' size-in-bits='64' id='type-id-148'/>
+    <reference-type-def kind='lvalue' type-id='type-id-77' size-in-bits='64' id='type-id-139'/>
+    <reference-type-def kind='lvalue' type-id='type-id-72' size-in-bits='64' id='type-id-74'/>
+    <reference-type-def kind='lvalue' type-id='type-id-17' size-in-bits='64' id='type-id-69'/>
+    <reference-type-def kind='rvalue' type-id='type-id-17' size-in-bits='64' id='type-id-168'/>
+    <reference-type-def kind='lvalue' type-id='type-id-256' size-in-bits='64' id='type-id-140'/>
+    <reference-type-def kind='lvalue' type-id='type-id-257' size-in-bits='64' id='type-id-163'/>
+    <reference-type-def kind='lvalue' type-id='type-id-258' size-in-bits='64' id='type-id-164'/>
+    <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-156'/>
+    <reference-type-def kind='lvalue' type-id='type-id-260' size-in-bits='64' id='type-id-162'/>
+    <reference-type-def kind='lvalue' type-id='type-id-261' size-in-bits='64' id='type-id-141'/>
+    <reference-type-def kind='lvalue' type-id='type-id-262' size-in-bits='64' id='type-id-165'/>
+    <reference-type-def kind='lvalue' type-id='type-id-263' size-in-bits='64' id='type-id-180'/>
+    <reference-type-def kind='lvalue' type-id='type-id-264' size-in-bits='64' id='type-id-179'/>
+    <namespace-decl name='std'>
+      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' visibility='default' is-declaration-only='yes' id='type-id-93'/>
+    </namespace-decl>
+    <reference-type-def kind='lvalue' type-id='type-id-265' size-in-bits='64' id='type-id-147'/>
+    <reference-type-def kind='lvalue' type-id='type-id-266' size-in-bits='64' id='type-id-151'/>
+    <pointer-type-def type-id='type-id-266' size-in-bits='64' id='type-id-153'/>
+    <reference-type-def kind='lvalue' type-id='type-id-267' size-in-bits='64' id='type-id-149'/>
+    <reference-type-def kind='lvalue' type-id='type-id-268' size-in-bits='64' id='type-id-110'/>
+    <pointer-type-def type-id='type-id-269' size-in-bits='64' id='type-id-161'/>
+    <reference-type-def kind='lvalue' type-id='type-id-270' size-in-bits='64' id='type-id-181'/>
+    <reference-type-def kind='lvalue' type-id='type-id-185' size-in-bits='64' id='type-id-129'/>
+    <reference-type-def kind='lvalue' type-id='type-id-271' size-in-bits='64' id='type-id-170'/>
+    <reference-type-def kind='lvalue' type-id='type-id-253' size-in-bits='64' id='type-id-19'/>
+    <reference-type-def kind='lvalue' type-id='type-id-272' size-in-bits='64' id='type-id-127'/>
+    <reference-type-def kind='lvalue' type-id='type-id-273' size-in-bits='64' id='type-id-24'/>
+    <pointer-type-def type-id='type-id-274' size-in-bits='64' id='type-id-41'/>
+    <pointer-type-def type-id='type-id-275' size-in-bits='64' id='type-id-35'/>
+    <reference-type-def kind='lvalue' type-id='type-id-276' size-in-bits='64' id='type-id-182'/>
+    <reference-type-def kind='lvalue' type-id='type-id-277' size-in-bits='64' id='type-id-135'/>
+    <pointer-type-def type-id='type-id-278' size-in-bits='64' id='type-id-138'/>
+    <namespace-decl name='mongo'>
+      <namespace-decl name='FTDCBSONUtil'>
+        <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-178'>
+          <underlying-type type-id='type-id-8'/>
+        </enum-decl>
+      </namespace-decl>
+    </namespace-decl>
+    <namespace-decl name='mongo'>
+      <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-175'>
+        <underlying-type type-id='type-id-8'/>
+      </enum-decl>
+    </namespace-decl>
+    <function-type size-in-bits='64' id='type-id-219'>
+      <parameter type-id='type-id-121'/>
+      <parameter type-id='type-id-121'/>
+      <return type-id='type-id-122'/>
+    </function-type>
+    <function-type size-in-bits='64' id='type-id-218'>
+      <return type-id='type-id-6'/>
+    </function-type>
+    <reference-type-def kind='lvalue' type-id='type-id-122' size-in-bits='64' id='type-id-176'/>
+    <reference-type-def kind='rvalue' type-id='type-id-44' size-in-bits='64' id='type-id-167'/>
+    <pointer-type-def type-id='type-id-44' size-in-bits='64' id='type-id-169'/>
+    <pointer-type-def type-id='type-id-215' size-in-bits='64' id='type-id-171'/>
+    <reference-type-def kind='lvalue' type-id='type-id-279' size-in-bits='64' id='type-id-128'/>
+    <pointer-type-def type-id='type-id-280' size-in-bits='64' id='type-id-154'/>
+    <reference-type-def kind='lvalue' type-id='type-id-178' size-in-bits='64' id='type-id-159'/>
+    <reference-type-def kind='rvalue' type-id='type-id-178' size-in-bits='64' id='type-id-160'/>
+    <pointer-type-def type-id='type-id-281' size-in-bits='64' id='type-id-64'/>
+    <reference-type-def kind='rvalue' type-id='type-id-64' size-in-bits='64' id='type-id-125'/>
+    <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-126'/>
+    <type-decl name='signed char' size-in-bits='8' id='type-id-173'/>
+    <pointer-type-def type-id='type-id-173' size-in-bits='64' id='type-id-172'/>
+    <pointer-type-def type-id='type-id-113' size-in-bits='64' id='type-id-130'/>
+    <reference-type-def kind='lvalue' type-id='type-id-283' size-in-bits='64' id='type-id-79'/>
+    <reference-type-def kind='lvalue' type-id='type-id-3' size-in-bits='64' id='type-id-20'/>
+    <reference-type-def kind='rvalue' type-id='type-id-3' size-in-bits='64' id='type-id-23'/>
+    <reference-type-def kind='lvalue' type-id='type-id-284' size-in-bits='64' id='type-id-143'/>
+    <typedef-decl name='is_not_reference_tag' type-id='type-id-285' filepath='src/third_party/boost-1.60.0/boost/optional/optional.hpp' line='219' column='1' id='type-id-132'/>
+    <namespace-decl name='mongo'>
+      <typedef-decl name='Milliseconds' type-id='type-id-22' filepath='src/mongo/util/duration.h' line='52' column='1' id='type-id-142'/>
+    </namespace-decl>
+    <namespace-decl name='mpl_'>
+      <typedef-decl name='true_' type-id='type-id-22' filepath='src/third_party/boost-1.60.0/boost/mpl/bool_fwd.hpp' line='24' column='1' id='type-id-158'/>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <typedef-decl name='__alloc_rebind&lt;std::allocator&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;, std::_Sp_counted_ptr_inplace&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt;, std::allocator&lt;std::thread::_Impl&lt;std::_Bind_simple&lt;std::_Bind&lt;std::_Mem_fn&lt;void (mongo::FTDCController::*)()&gt; (mongo::FTDCController *)&gt; ()&gt; &gt; &gt;, __gnu_cxx::_Lock_policy::_S_atomic&gt; &gt;' type-id='type-id-82' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/alloc_traits.h' line='76' column='1' id='type-id-84'/>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <namespace-decl name='__cxx11'>
+        <typedef-decl name='string' type-id='type-id-3' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stringfwd.h' line='74' column='1' id='type-id-155'/>
+      </namespace-decl>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <class-decl name='ios_base' size-in-bits='1728' visibility='default' is-declaration-only='yes' id='type-id-286'>
+        <member-type access='private'>
+          <typedef-decl name='iostate' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/ios_base.h' line='398' column='1' id='type-id-42'/>
+        </member-type>
+      </class-decl>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <typedef-decl name='streamsize' type-id='type-id-27' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/postypes.h' line='98' column='1' id='type-id-36'/>
+    </namespace-decl>
+    <typedef-decl name='uint32_t' type-id='type-id-55' filepath='/usr/include/stdint.h' line='51' column='1' id='type-id-133'/>
+    <typedef-decl name='uint64_t' type-id='type-id-28' filepath='/usr/include/stdint.h' line='55' column='1' id='type-id-136'/>
+    <reference-type-def kind='rvalue' type-id='type-id-55' size-in-bits='64' id='type-id-166'/>
+    <pointer-type-def type-id='type-id-55' size-in-bits='64' id='type-id-146'/>
+    <pointer-type-def type-id='type-id-28' size-in-bits='64' id='type-id-137'/>
+    <qualified-type-def type-id='type-id-114' const='yes' id='type-id-255'/>
+    <qualified-type-def type-id='type-id-287' const='yes' id='type-id-256'/>
+    <qualified-type-def type-id='type-id-288' const='yes' id='type-id-257'/>
+    <qualified-type-def type-id='type-id-289' const='yes' id='type-id-258'/>
+    <qualified-type-def type-id='type-id-290' const='yes' id='type-id-259'/>
+    <qualified-type-def type-id='type-id-291' const='yes' id='type-id-260'/>
+    <qualified-type-def type-id='type-id-292' const='yes' id='type-id-261'/>
+    <qualified-type-def type-id='type-id-293' const='yes' id='type-id-262'/>
+    <qualified-type-def type-id='type-id-294' const='yes' id='type-id-263'/>
+    <qualified-type-def type-id='type-id-295' const='yes' id='type-id-264'/>
+    <namespace-decl name='mongo'>
+      <class-decl name='Client' size-in-bits='960' visibility='default' is-declaration-only='yes' id='type-id-280'/>
+    </namespace-decl>
+    <namespace-decl name='mongo'>
+      <class-decl name='FTDCCollectorInterface' size-in-bits='64' visibility='default' is-declaration-only='yes' id='type-id-281'/>
+    </namespace-decl>
+    <namespace-decl name='mongo'>
+      <class-decl name='ServiceContext' size-in-bits='2432' visibility='default' is-declaration-only='yes' id='type-id-282'/>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <namespace-decl name='__cxx11'>
+        <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='3008' visibility='default' is-declaration-only='yes' id='type-id-283'/>
+      </namespace-decl>
+    </namespace-decl>
+    <qualified-type-def type-id='type-id-50' const='yes' id='type-id-265'/>
+    <qualified-type-def type-id='type-id-95' const='yes' id='type-id-266'/>
+    <qualified-type-def type-id='type-id-94' const='yes' id='type-id-267'/>
+    <qualified-type-def type-id='type-id-72' const='yes' id='type-id-268'/>
+    <qualified-type-def type-id='type-id-105' const='yes' id='type-id-269'/>
+    <qualified-type-def type-id='type-id-296' const='yes' id='type-id-270'/>
+    <qualified-type-def type-id='type-id-44' const='yes' id='type-id-271'/>
+    <qualified-type-def type-id='type-id-155' const='yes' id='type-id-272'/>
+    <qualified-type-def type-id='type-id-93' const='yes' id='type-id-273'/>
+    <qualified-type-def type-id='type-id-40' const='yes' id='type-id-274'/>
+    <qualified-type-def type-id='type-id-34' const='yes' id='type-id-275'/>
+    <qualified-type-def type-id='type-id-297' const='yes' id='type-id-276'/>
+    <qualified-type-def type-id='type-id-55' const='yes' id='type-id-277'/>
+    <qualified-type-def type-id='type-id-28' const='yes' id='type-id-278'/>
+    <namespace-decl name='mongo'>
+      <typedef-decl name='BufBuilder' type-id='type-id-22' filepath='src/mongo/bson/util/builder.h' line='365' column='1' id='type-id-279'/>
+    </namespace-decl>
+    <namespace-decl name='mpl_'>
+      <typedef-decl name='false_' type-id='type-id-22' filepath='src/third_party/boost-1.60.0/boost/mpl/bool_fwd.hpp' line='25' column='1' id='type-id-285'/>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <typedef-decl name='ostream' type-id='type-id-298' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/iosfwd' line='141' column='1' id='type-id-284'/>
+    </namespace-decl>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='832' id='type-id-287'>
+      <subrange length='104'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='128' id='type-id-288'>
+      <subrange length='16'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='152' id='type-id-289'>
+      <subrange length='19'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='16' id='type-id-290'>
+      <subrange length='2'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='280' id='type-id-291'>
+      <subrange length='35'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='288' id='type-id-292'>
+      <subrange length='36'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='632' id='type-id-293'>
+      <subrange length='79'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='56' id='type-id-294'>
+      <subrange length='7'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-96' size-in-bits='64' id='type-id-295'>
+      <subrange length='8'/>
+    </array-type-def>
+    <namespace-decl name='std'>
+      <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='2176' visibility='default' is-declaration-only='yes' id='type-id-298'>
+        <member-type access='private'>
+          <typedef-decl name='__ostream_type' type-id='type-id-298' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ostream' line='71' column='1' id='type-id-299'/>
+        </member-type>
+        <member-function access='public'>
+          <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ostream' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-300' is-artificial='yes'/>
+            <parameter type-id='type-id-28'/>
+            <return type-id='type-id-301'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+    <namespace-decl name='std'>
+      <class-decl name='type_info' visibility='default' is-declaration-only='yes' id='type-id-297'>
+        <member-function access='public'>
+          <function-decl name='operator==' mangled-name='_ZNKSt9type_infoeqERKS_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/typeinfo' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-302' is-artificial='yes'/>
+            <parameter type-id='type-id-182'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+    <namespace-decl name='boost'>
+      <namespace-decl name='detail'>
+        <typedef-decl name='sp_typeinfo' type-id='type-id-303' filepath='src/third_party/boost-1.60.0/boost/detail/sp_typeinfo.hpp' line='28' column='1' id='type-id-296'/>
+      </namespace-decl>
+    </namespace-decl>
+    <pointer-type-def type-id='type-id-276' size-in-bits='64' id='type-id-302'/>
+    <pointer-type-def type-id='type-id-298' size-in-bits='64' id='type-id-300'/>
+    <reference-type-def kind='lvalue' type-id='type-id-299' size-in-bits='64' id='type-id-301'/>
+    <namespace-decl name='boost'>
+      <namespace-decl name='core'>
+        <typedef-decl name='typeinfo' type-id='type-id-297' filepath='src/third_party/boost-1.60.0/boost/core/typeinfo.hpp' line='134' column='1' id='type-id-303'/>
+      </namespace-decl>
+    </namespace-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/collector.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+    <namespace-decl name='std'>
+      <namespace-decl name='__cxx11'>
+      </namespace-decl>
+
+
+
+
+
+      <namespace-decl name='this_thread'>
+        <function-decl name='get_id' mangled-name='_ZNSt11this_thread6get_idEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='263' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='yield' mangled-name='_ZNSt11this_thread5yieldEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/thread' line='267' column='1' visibility='default' binding='global' size-in-bits='64'>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </namespace-decl>
+    </namespace-decl>
+    <namespace-decl name='mongo'>
+
+      <class-decl name='FTDCCollectorInterface' size-in-bits='64' visibility='default' is-declaration-only='yes' id='type-id-281'/>
+      <class-decl name='ServiceContext' size-in-bits='2432' visibility='default' is-declaration-only='yes' id='type-id-282'/>
+      <class-decl name='OperationContext' size-in-bits='2176' visibility='default' is-declaration-only='yes' id='type-id-304'>
+        <member-function access='public'>
+          <function-decl name='lockState' mangled-name='_ZNK5mongo16OperationContext9lockStateEv' filepath='src/mongo/db/operation_context.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-305' is-artificial='yes'/>
+            <return type-id='type-id-306'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='Locker' size-in-bits='128' visibility='default' is-declaration-only='yes' id='type-id-307'>
+        <member-function access='public'>
+          <function-decl name='setShouldConflictWithSecondaryBatchApplication' mangled-name='_ZN5mongo6Locker46setShouldConflictWithSecondaryBatchApplicationEb' filepath='src/mongo/db/concurrency/locker.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-306' is-artificial='yes'/>
+            <parameter type-id='type-id-17'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+
+
+    <qualified-type-def type-id='type-id-112' restrict='yes' id='type-id-308'/>
+    <function-decl name='wcsftime' filepath='/usr/include/wchar.h' line='858' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-192'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-196'/>
+      <parameter type-id='type-id-308'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+
+
+
+    <typedef-decl name='__clock_t' type-id='type-id-26' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='135' column='1' id='type-id-309'/>
+    <typedef-decl name='clock_t' type-id='type-id-309' filepath='/usr/include/time.h' line='59' column='1' id='type-id-310'/>
+    <function-decl name='clock' filepath='/usr/include/time.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <return type-id='type-id-310'/>
+    </function-decl>
+    <typedef-decl name='__time_t' type-id='type-id-26' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='139' column='1' id='type-id-311'/>
+    <typedef-decl name='time_t' type-id='type-id-311' filepath='/usr/include/time.h' line='75' column='1' id='type-id-312'/>
+    <function-decl name='difftime' filepath='/usr/include/time.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-312'/>
+      <parameter type-id='type-id-312'/>
+      <return type-id='type-id-177'/>
+    </function-decl>
+    <function-decl name='mktime' filepath='/usr/include/time.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-114'/>
+      <return type-id='type-id-312'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-312' size-in-bits='64' id='type-id-313'/>
+    <function-decl name='time' filepath='/usr/include/time.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-313'/>
+      <return type-id='type-id-312'/>
+    </function-decl>
+    <function-decl name='asctime' filepath='/usr/include/time.h' line='261' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-112'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <qualified-type-def type-id='type-id-312' const='yes' id='type-id-314'/>
+    <pointer-type-def type-id='type-id-314' size-in-bits='64' id='type-id-315'/>
+    <function-decl name='ctime' filepath='/usr/include/time.h' line='264' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-315'/>
+      <return type-id='type-id-21'/>
+    </function-decl>
+    <function-decl name='gmtime' filepath='/usr/include/time.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-315'/>
+      <return type-id='type-id-114'/>
+    </function-decl>
+    <function-decl name='localtime' filepath='/usr/include/time.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-315'/>
+      <return type-id='type-id-114'/>
+    </function-decl>
+    <function-decl name='strftime' filepath='/usr/include/time.h' line='205' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-184'/>
+      <parameter type-id='type-id-113'/>
+      <parameter type-id='type-id-186'/>
+      <parameter type-id='type-id-308'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <function-decl name='strnlen' filepath='/usr/include/string.h' line='401' column='1' visibility='default' binding='global' size-in-bits='64'>
+      <parameter type-id='type-id-16'/>
+      <parameter type-id='type-id-113'/>
+      <return type-id='type-id-113'/>
+    </function-decl>
+    <pointer-type-def type-id='type-id-307' size-in-bits='64' id='type-id-306'/>
+    <qualified-type-def type-id='type-id-304' const='yes' id='type-id-316'/>
+    <pointer-type-def type-id='type-id-316' size-in-bits='64' id='type-id-305'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/compressor.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+
+
+    <namespace-decl name='mpl_'>
+
+    </namespace-decl>
+
+
+
+
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/controller.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+    <namespace-decl name='std'>
+      <namespace-decl name='__cxx11'>
+        <class-decl name='basic_ostringstream&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='3008' visibility='default' is-declaration-only='yes' id='type-id-283'/>
+      </namespace-decl>
+
+
+
+
+
+
+      <function-decl name='__enable_shared_from_this_helper&lt;__gnu_cxx::_Lock_policy::_S_atomic&gt;' mangled-name='_ZSt32__enable_shared_from_this_helperILN9__gnu_cxx12_Lock_policyE2EEvRKSt14__shared_countIXT_EEz' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt32__enable_shared_from_this_helperILN9__gnu_cxx12_Lock_policyE2EEvRKSt14__shared_countIXT_EEz'>
+        <parameter type-id='type-id-107' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/shared_ptr_base.h' line='862' column='1'/>
+        <parameter is-variadic='yes'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='2176' visibility='default' is-declaration-only='yes' id='type-id-298'>
+        <member-type access='private'>
+          <typedef-decl name='__ostream_type' type-id='type-id-298' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ostream' line='71' column='1' id='type-id-299'/>
+        </member-type>
+        <member-function access='public'>
+          <function-decl name='operator&lt;&lt;' mangled-name='_ZNSolsEm' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/ostream' line='170' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-300' is-artificial='yes'/>
+            <parameter type-id='type-id-28'/>
+            <return type-id='type-id-301'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='type_info' visibility='default' is-declaration-only='yes' id='type-id-297'>
+        <member-function access='public'>
+          <function-decl name='operator==' mangled-name='_ZNKSt9type_infoeqERKS_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/typeinfo' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-302' is-artificial='yes'/>
+            <parameter type-id='type-id-182'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+    <namespace-decl name='mongo'>
+
+
+
+    </namespace-decl>
+
+
+
+
+
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/decompressor.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+
+
+
+
+
+
+
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/file_manager.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+    <namespace-decl name='boost'>
+
+      <namespace-decl name='filesystem'>
+
+        <function-decl name='operator/' mangled-name='_ZN5boost10filesystemdvERKNS0_4pathES3_' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='789' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystemdvERKNS0_4pathES3_'>
+          <parameter type-id='type-id-107' name='lhs' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='789' column='1'/>
+          <parameter type-id='type-id-107' name='rhs' filepath='src/third_party/boost-1.60.0/boost/filesystem/path.hpp' line='789' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </namespace-decl>
+
+
+      <namespace-decl name='detail'>
+
+        <function-decl name='sp_enable_shared_from_this' mangled-name='_ZN5boost6detail26sp_enable_shared_from_thisEz' filepath='src/third_party/boost-1.60.0/boost/smart_ptr/shared_ptr.hpp' line='241' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail26sp_enable_shared_from_thisEz'>
+          <parameter is-variadic='yes'/>
+          <return type-id='type-id-6'/>
+        </function-decl>
+      </namespace-decl>
+
+
+
+
+
+
+
+
+
+
+      <namespace-decl name='core'>
+      </namespace-decl>
+    </namespace-decl>
+    <namespace-decl name='std'>
+
+
+
+
+
+
+
+      <function-decl name='__introsort_loop&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, long, __gnu_cxx::__ops::_Iter_less_iter&gt;' mangled-name='_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_less_iterEEvT_SC_T0_T1_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1935' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_less_iterEEvT_SC_T0_T1_'>
+        <parameter type-id='type-id-22' name='__first' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1935' column='1'/>
+        <parameter type-id='type-id-22' name='__last' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1936' column='1'/>
+        <parameter type-id='type-id-26' name='__depth_limit' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1937' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1937' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <function-decl name='__make_heap&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, __gnu_cxx::__ops::_Iter_less_iter&gt;' mangled-name='_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_'>
+        <parameter type-id='type-id-22' name='__first' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='317' column='1'/>
+        <parameter type-id='type-id-22' name='__last' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='317' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='318' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <function-decl name='__adjust_heap&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, long, boost::filesystem::path, __gnu_cxx::__ops::_Iter_less_iter&gt;' mangled-name='_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElS4_NS0_5__ops15_Iter_less_iterEEvT_T0_SD_T1_T2_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEElS4_NS0_5__ops15_Iter_less_iterEEvT_T0_SD_T1_T2_'>
+        <parameter type-id='type-id-22' name='__first' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='207' column='1'/>
+        <parameter type-id='type-id-26' name='__holeIndex' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='207' column='1'/>
+        <parameter type-id='type-id-26' name='__len' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='208' column='1'/>
+        <parameter type-id='type-id-22' name='__value' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='208' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='208' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <function-decl name='__move_median_to_first&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, __gnu_cxx::__ops::_Iter_less_iter&gt;' mangled-name='_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_SC_SC_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_SC_SC_T0_'>
+        <parameter type-id='type-id-22' name='__result' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='78' column='1'/>
+        <parameter type-id='type-id-22' name='__a' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='78' column='1'/>
+        <parameter type-id='type-id-22' name='__b' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='78' column='1'/>
+        <parameter type-id='type-id-22' name='__c' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='79' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='79' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <function-decl name='__insertion_sort&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, __gnu_cxx::__ops::_Iter_less_iter&gt;' mangled-name='_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1835' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_T0_'>
+        <parameter type-id='type-id-22' name='__first' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='317' column='1'/>
+        <parameter type-id='type-id-22' name='__last' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='317' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_heap.h' line='318' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <function-decl name='__unguarded_linear_insert&lt;__gnu_cxx::__normal_iterator&lt;boost::filesystem::path *, std::vector&lt;boost::filesystem::path, std::allocator&lt;boost::filesystem::path&gt; &gt; &gt;, __gnu_cxx::__ops::_Val_less_iter&gt;' mangled-name='_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_less_iterEEvT_T0_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1816' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN5boost10filesystem4pathESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_less_iterEEvT_T0_'>
+        <parameter type-id='type-id-22' name='__last' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1816' column='1'/>
+        <parameter type-id='type-id-22' name='__comp' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/stl_algo.h' line='1817' column='1'/>
+        <return type-id='type-id-6'/>
+      </function-decl>
+      <class-decl name='allocator&lt;char&gt;' size-in-bits='8' visibility='default' is-declaration-only='yes' id='type-id-93'/>
+      <class-decl name='basic_ofstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4096' visibility='default' is-declaration-only='yes' id='type-id-317'>
+        <member-function access='public'>
+          <function-decl name='is_open' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE7is_openEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='778' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-318' is-artificial='yes'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='close' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE5closeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='839' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-318' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='open' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='799' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-318' is-artificial='yes'/>
+            <parameter type-id='type-id-16'/>
+            <parameter type-id='type-id-319'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_ofstream' mangled-name='_ZNSt14basic_ofstreamIcSt11char_traitsIcEED1Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='737' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-318' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+
+    <namespace-decl name='mongo'>
+
+      <namespace-decl name='FTDCBSONUtil'>
+      </namespace-decl>
+
+
+      <class-decl name='Client' size-in-bits='960' visibility='default' is-declaration-only='yes' id='type-id-280'/>
+    </namespace-decl>
+    <namespace-decl name='mpl_'>
+
+    </namespace-decl>
+
+
+
+    <pointer-type-def type-id='type-id-317' size-in-bits='64' id='type-id-318'/>
+    <namespace-decl name='std'>
+      <class-decl name='ios_base' size-in-bits='1728' visibility='default' is-declaration-only='yes' id='type-id-286'>
+        <member-type access='private'>
+          <typedef-decl name='openmode' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/ios_base.h' line='429' column='1' id='type-id-319'/>
+        </member-type>
+      </class-decl>
+    </namespace-decl>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/file_reader.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+    <namespace-decl name='std'>
+
+
+
+
+
+
+
+      <function-decl name='operator+&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.tcc' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_'>
+        <parameter type-id='type-id-16' name='__lhs' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.tcc' line='1151' column='1'/>
+        <parameter type-id='type-id-19' name='__rhs' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/basic_string.tcc' line='1152' column='1'/>
+        <return type-id='type-id-3'/>
+      </function-decl>
+      <class-decl name='basic_ifstream&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='4160' visibility='default' is-declaration-only='yes' id='type-id-320'>
+        <member-function access='public'>
+          <function-decl name='close' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE5closeEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='633' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-321' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='is_open' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE7is_openEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='574' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-321' is-artificial='yes'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public'>
+          <function-decl name='open' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEE4openEPKcSt13_Ios_Openmode' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='595' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-321' is-artificial='yes'/>
+            <parameter type-id='type-id-16'/>
+            <parameter type-id='type-id-319'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+        <member-function access='public' destructor='yes' vtable-offset='0'>
+          <function-decl name='~basic_ifstream' mangled-name='_ZNSt14basic_ifstreamIcSt11char_traitsIcEED1Ev' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='533' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-321' is-artificial='yes'/>
+            <return type-id='type-id-6'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+      <class-decl name='ios_base' size-in-bits='1728' visibility='default' is-declaration-only='yes' id='type-id-286'>
+        <member-type access='private'>
+          <typedef-decl name='iostate' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/ios_base.h' line='398' column='1' id='type-id-42'/>
+        </member-type>
+        <member-type access='private'>
+          <typedef-decl name='openmode' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/bits/ios_base.h' line='429' column='1' id='type-id-319'/>
+        </member-type>
+      </class-decl>
+      <class-decl name='basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;' size-in-bits='1920' visibility='default' is-declaration-only='yes' id='type-id-322'>
+        <member-function access='public'>
+          <function-decl name='is_open' mangled-name='_ZNKSt13basic_filebufIcSt11char_traitsIcEE7is_openEv' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/fstream' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
+            <parameter type-id='type-id-323' is-artificial='yes'/>
+            <return type-id='type-id-17'/>
+          </function-decl>
+        </member-function>
+      </class-decl>
+    </namespace-decl>
+
+    <namespace-decl name='mongo'>
+      <namespace-decl name='FTDCBSONUtil'>
+      </namespace-decl>
+
+    </namespace-decl>
+
+
+
+
+    <pointer-type-def type-id='type-id-320' size-in-bits='64' id='type-id-321'/>
+    <qualified-type-def type-id='type-id-322' const='yes' id='type-id-324'/>
+    <pointer-type-def type-id='type-id-324' size-in-bits='64' id='type-id-323'/>
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/file_writer.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+    <namespace-decl name='std'>
+
+
+
+
+
+    </namespace-decl>
+
+
+
+
+
+
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/util.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+
+    <namespace-decl name='mongo'>
+
+      <var-decl name='kFTDCInterimFile' type-id='type-id-325' mangled-name='_ZN5mongo16kFTDCInterimFileE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='51' column='1' elf-symbol-id='_ZN5mongo16kFTDCInterimFileE'/>
+      <var-decl name='kFTDCArchiveFile' type-id='type-id-326' mangled-name='_ZN5mongo16kFTDCArchiveFileE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='53' column='1' elf-symbol-id='_ZN5mongo16kFTDCArchiveFileE'/>
+      <var-decl name='kFTDCIdField' type-id='type-id-327' mangled-name='_ZN5mongo12kFTDCIdFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='55' column='1' elf-symbol-id='_ZN5mongo12kFTDCIdFieldE'/>
+      <var-decl name='kFTDCTypeField' type-id='type-id-328' mangled-name='_ZN5mongo14kFTDCTypeFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='56' column='1' elf-symbol-id='_ZN5mongo14kFTDCTypeFieldE'/>
+      <var-decl name='kFTDCDataField' type-id='type-id-328' mangled-name='_ZN5mongo14kFTDCDataFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='58' column='1' elf-symbol-id='_ZN5mongo14kFTDCDataFieldE'/>
+      <var-decl name='kFTDCDocField' type-id='type-id-327' mangled-name='_ZN5mongo13kFTDCDocFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='59' column='1' elf-symbol-id='_ZN5mongo13kFTDCDocFieldE'/>
+      <var-decl name='kFTDCDocsField' type-id='type-id-328' mangled-name='_ZN5mongo14kFTDCDocsFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='61' column='1' elf-symbol-id='_ZN5mongo14kFTDCDocsFieldE'/>
+      <var-decl name='kFTDCCollectStartField' type-id='type-id-329' mangled-name='_ZN5mongo22kFTDCCollectStartFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='63' column='1' elf-symbol-id='_ZN5mongo22kFTDCCollectStartFieldE'/>
+      <var-decl name='kFTDCCollectEndField' type-id='type-id-327' mangled-name='_ZN5mongo20kFTDCCollectEndFieldE' visibility='default' filepath='src/mongo/db/ftdc/util.cpp' line='64' column='1' elf-symbol-id='_ZN5mongo20kFTDCCollectEndFieldE'/>
+      <namespace-decl name='FTDCBSONUtil'>
+        <function-decl name='extractMetricsFromDocument' mangled-name='_ZN5mongo12FTDCBSONUtil26extractMetricsFromDocumentERKNS_7BSONObjES3_PSt6vectorImSaImEE' filepath='src/mongo/db/ftdc/util.cpp' line='233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil26extractMetricsFromDocumentERKNS_7BSONObjES3_PSt6vectorImSaImEE'>
+          <parameter type-id='type-id-107' name='referenceDoc' filepath='src/mongo/db/ftdc/util.cpp' line='233' column='1'/>
+          <parameter type-id='type-id-107' name='currentDoc' filepath='src/mongo/db/ftdc/util.cpp' line='234' column='1'/>
+          <parameter type-id='type-id-114' name='metrics' filepath='src/mongo/db/ftdc/util.cpp' line='235' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+
+        <function-decl name='constructDocumentFromMetrics' mangled-name='_ZN5mongo12FTDCBSONUtil28constructDocumentFromMetricsERKNS_7BSONObjERKSt6vectorImSaImEE' filepath='src/mongo/db/ftdc/util.cpp' line='334' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil28constructDocumentFromMetricsERKNS_7BSONObjERKSt6vectorImSaImEE'>
+          <parameter type-id='type-id-107' name='ref' filepath='src/mongo/db/ftdc/util.cpp' line='334' column='1'/>
+          <parameter type-id='type-id-107' name='metrics' filepath='src/mongo/db/ftdc/util.cpp' line='335' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='createBSONMetadataDocument' mangled-name='_ZN5mongo12FTDCBSONUtil26createBSONMetadataDocumentERKNS_7BSONObjENS_6Date_tE' filepath='src/mongo/db/ftdc/util.cpp' line='346' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil26createBSONMetadataDocumentERKNS_7BSONObjENS_6Date_tE'>
+          <parameter type-id='type-id-107' name='metadata' filepath='src/mongo/db/ftdc/util.cpp' line='346' column='1'/>
+          <parameter type-id='type-id-22' name='date' filepath='src/mongo/db/ftdc/util.cpp' line='346' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='createBSONMetricChunkDocument' mangled-name='_ZN5mongo12FTDCBSONUtil29createBSONMetricChunkDocumentENS_14ConstDataRangeENS_6Date_tE' filepath='src/mongo/db/ftdc/util.cpp' line='355' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil29createBSONMetricChunkDocumentENS_14ConstDataRangeENS_6Date_tE'>
+          <parameter type-id='type-id-22' name='buf' filepath='src/mongo/db/ftdc/util.cpp' line='355' column='1'/>
+          <parameter type-id='type-id-22' name='date' filepath='src/mongo/db/ftdc/util.cpp' line='355' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='getBSONDocumentId' mangled-name='_ZN5mongo12FTDCBSONUtil17getBSONDocumentIdERKNS_7BSONObjE' filepath='src/mongo/db/ftdc/util.cpp' line='365' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil17getBSONDocumentIdERKNS_7BSONObjE'>
+          <parameter type-id='type-id-107' name='obj' filepath='src/mongo/db/ftdc/util.cpp' line='365' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='getBSONDocumentType' mangled-name='_ZN5mongo12FTDCBSONUtil19getBSONDocumentTypeERKNS_7BSONObjE' filepath='src/mongo/db/ftdc/util.cpp' line='376' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil19getBSONDocumentTypeERKNS_7BSONObjE'>
+          <parameter type-id='type-id-107' name='obj' filepath='src/mongo/db/ftdc/util.cpp' line='365' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='getBSONDocumentFromMetadataDoc' mangled-name='_ZN5mongo12FTDCBSONUtil30getBSONDocumentFromMetadataDocERKNS_7BSONObjE' filepath='src/mongo/db/ftdc/util.cpp' line='396' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil30getBSONDocumentFromMetadataDocERKNS_7BSONObjE'>
+          <parameter type-id='type-id-107' name='obj' filepath='src/mongo/db/ftdc/util.cpp' line='365' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='getMetricsFromMetricDoc' mangled-name='_ZN5mongo12FTDCBSONUtil23getMetricsFromMetricDocERKNS_7BSONObjEPNS_16FTDCDecompressorE' filepath='src/mongo/db/ftdc/util.cpp' line='412' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo12FTDCBSONUtil23getMetricsFromMetricDocERKNS_7BSONObjEPNS_16FTDCDecompressorE'>
+          <parameter type-id='type-id-107' name='obj' filepath='src/mongo/db/ftdc/util.cpp' line='412' column='1'/>
+          <parameter type-id='type-id-114' name='decompressor' filepath='src/mongo/db/ftdc/util.cpp' line='413' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </namespace-decl>
+
+
+      <namespace-decl name='FTDCUtil'>
+        <function-decl name='getInterimFile' mangled-name='_ZN5mongo8FTDCUtil14getInterimFileERKN5boost10filesystem4pathE' filepath='src/mongo/db/ftdc/util.cpp' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8FTDCUtil14getInterimFileERKN5boost10filesystem4pathE'>
+          <parameter type-id='type-id-107' name='file' filepath='src/mongo/db/ftdc/util.cpp' line='85' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+
+        <function-decl name='getInterimTempFile' mangled-name='_ZN5mongo8FTDCUtil18getInterimTempFileERKN5boost10filesystem4pathE' filepath='src/mongo/db/ftdc/util.cpp' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8FTDCUtil18getInterimTempFileERKN5boost10filesystem4pathE'>
+          <parameter type-id='type-id-107' name='file' filepath='src/mongo/db/ftdc/util.cpp' line='85' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='roundTime' mangled-name='_ZN5mongo8FTDCUtil9roundTimeENS_6Date_tENS_8DurationISt5ratioILl1ELl1000EEEE' filepath='src/mongo/db/ftdc/util.cpp' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8FTDCUtil9roundTimeENS_6Date_tENS_8DurationISt5ratioILl1ELl1000EEEE'>
+          <parameter type-id='type-id-22' name='now' filepath='src/mongo/db/ftdc/util.cpp' line='93' column='1'/>
+          <parameter type-id='type-id-142' name='period' filepath='src/mongo/db/ftdc/util.cpp' line='93' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+        <function-decl name='getMongoSPath' mangled-name='_ZN5mongo8FTDCUtil13getMongoSPathERKN5boost10filesystem4pathE' filepath='src/mongo/db/ftdc/util.cpp' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo8FTDCUtil13getMongoSPathERKN5boost10filesystem4pathE'>
+          <parameter type-id='type-id-107' name='file' filepath='src/mongo/db/ftdc/util.cpp' line='85' column='1'/>
+          <return type-id='type-id-22'/>
+        </function-decl>
+      </namespace-decl>
+    </namespace-decl>
+    <array-type-def dimensions='1' type-id='type-id-185' size-in-bits='128' id='type-id-325'>
+      <subrange length='16'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-185' size-in-bits='64' id='type-id-326'>
+      <subrange length='8'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-185' size-in-bits='32' id='type-id-327'>
+      <subrange length='4'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-185' size-in-bits='40' id='type-id-328'>
+      <subrange length='5'/>
+    </array-type-def>
+    <array-type-def dimensions='1' type-id='type-id-185' size-in-bits='48' id='type-id-329'>
+      <subrange length='6'/>
+    </array-type-def>
+
+
+
+
+
+  </abi-instr>
+  <abi-instr version='1.0' address-size='64' path='src/mongo/db/ftdc/varint.cpp' comp-dir-path='/home/andrew/Documents/10gen/dev/src/mongodb' language='LANG_C_plus_plus'>
+
+
+
+
+
+
+  </abi-instr>
+</abi-corpus>
index 3fc1187..cfe4b07 100644 (file)
@@ -222,6 +222,12 @@ InOutSpec in_out_specs[] =
     "data/test-read-dwarf/PR22015-libboost_iostreams.so.abi",
     "output/test-read-dwarf/PR22015-libboost_iostreams.so.abi",
   },
+  {
+    "data/test-read-dwarf/PR22122-libftdc.so",
+    "",
+    "data/test-read-dwarf/PR22122-libftdc.so.abi",
+    "output/test-read-dwarf/PR22122-libftdc.so.abi",
+  },
   // This should be the last entry.
   {NULL, NULL, NULL, NULL}
 };