diff --git a/LICENSE b/LICENSE
index ec8ad841fdc71ccea76ad08966adc27f4c8c1d31..d35c4f202e1ef4497bcee795be222d7be62ff9f2 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 
 Produced at the Lawrence Livermore National Laboratory
 
diff --git a/bootstrap-env.sh b/bootstrap-env.sh
index 7265f775a3baad6f626d79b1b7251e90d1bab495..2455fa31d6ad27248e97f009ce15728b570aaee7 100755
--- a/bootstrap-env.sh
+++ b/bootstrap-env.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/config-build.sh b/config-build.sh
index ea0da0da7a1c0fd8c0b619963f8c8f647566e472..eb2cce9eda9325e042cfba14df137eb7e2eb935e 100755
--- a/config-build.sh
+++ b/config-build.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/package.py b/package.py
index 8fdcce538f793ccc1787c42fa55b097754a1e20a..f411d9083e6bc4e7dcfd7c5013551dff70d410af 100755
--- a/package.py
+++ b/package.py
@@ -1,7 +1,45 @@
 #!/bin/env python
 ###############################################################################
-#
-# TODO: STRAWMAN RELEASE HEADER
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
+# 
+# Produced at the Lawrence Livermore National Laboratory
+# 
+# LLNL-CODE-666778
+# 
+# All rights reserved.
+# 
+# This file is part of Conduit. 
+# 
+# For details, see: http://software.llnl.gov/conduit/.
+# 
+# Please also read conduit/LICENSE
+# 
+# Redistribution and use in source and binary forms, with or without 
+# modification, are permitted provided that the following conditions are met:
+# 
+# * Redistributions of source code must retain the above copyright notice, 
+#   this list of conditions and the disclaimer below.
+# 
+# * Redistributions in binary form must reproduce the above copyright notice,
+#   this list of conditions and the disclaimer (as noted below) in the
+#   documentation and/or other materials provided with the distribution.
+# 
+# * Neither the name of the LLNS/LLNL nor the names of its contributors may
+#   be used to endorse or promote products derived from this software without
+#   specific prior written permission.
+# 
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
+# LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
+# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+# DAMAGES  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
+# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
+# POSSIBILITY OF SUCH DAMAGE.
 # 
 ###############################################################################
 
diff --git a/scripts/uberenv/packages/zlib/package.py b/scripts/uberenv/packages/zlib/package.py
new file mode 100644
index 0000000000000000000000000000000000000000..4e99141bacb7e009fbac41bcdaf1a085cb16c8e9
--- /dev/null
+++ b/scripts/uberenv/packages/zlib/package.py
@@ -0,0 +1,45 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+class Zlib(Package):
+    """zlib is designed to be a free, general-purpose, legally unencumbered --
+       that is, not covered by any patents -- lossless data-compression library for
+       use on virtually any computer hardware and operating system.
+    """
+
+    homepage = "http://zlib.net"
+    url      = "http://zlib.net/fossils/zlib-1.2.10.tar.gz"
+
+    version('1.2.10', 'd9794246f853d15ce0fcbf79b9a3cf13')
+    version('1.2.8', '44d667c142d7cda120332623eab69f40')
+
+    
+
+    def install(self, spec, prefix):
+        configure("--prefix=%s" % prefix)
+
+        make()
+        make("install")
diff --git a/src/CMake/BasicTypeChecks.cmake b/src/CMake/BasicTypeChecks.cmake
index b95587ef2a8261716464b5fbd4772f89507c1bbd..c27468d3e8f22c3f11c5c3593ed50052658e85bb 100644
--- a/src/CMake/BasicTypeChecks.cmake
+++ b/src/CMake/BasicTypeChecks.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/CMakeBasics.cmake b/src/CMake/CMakeBasics.cmake
index 4166d677c808ce27c4d3c53d33ec2b1a4cb1fb85..14df75a728abdee9029741be503ffdfc9e6998c5 100644
--- a/src/CMake/CMakeBasics.cmake
+++ b/src/CMake/CMakeBasics.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/CMake/Setup3rdParty.cmake b/src/CMake/Setup3rdParty.cmake
index 2cf797d739a6b273b72e9481d479800d92e05c3a..7f2b72d47ad8f37d28f67c2f43700ad71b9a42ae 100644
--- a/src/CMake/Setup3rdParty.cmake
+++ b/src/CMake/Setup3rdParty.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/CMake/SetupDocs.cmake b/src/CMake/SetupDocs.cmake
index fdac8757039783a30e11302d1af8c88b83b6abc3..54aad0f99dc1e7cabca3825c9840c160a8d2b713 100644
--- a/src/CMake/SetupDocs.cmake
+++ b/src/CMake/SetupDocs.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/SetupFortran.cmake b/src/CMake/SetupFortran.cmake
index 0de3f792e7971fde85890a38e200543cd07062dd..326647c3d96487bce1d2f3b638b2319f75ce5e04 100644
--- a/src/CMake/SetupFortran.cmake
+++ b/src/CMake/SetupFortran.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/SetupIncludes.cmake b/src/CMake/SetupIncludes.cmake
index 0c2eb910c551605fd8bafb786f18f089f9b6d9ba..bbedb15c4833b3be1e7e65b9960e0cf276412d64 100644
--- a/src/CMake/SetupIncludes.cmake
+++ b/src/CMake/SetupIncludes.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/SetupTests.cmake b/src/CMake/SetupTests.cmake
index a44fab10e8dd936acb1b04bf1c1b2b7ae2fc4a2e..6baa2f35335e51804005b675bbeb7ad209cecd7d 100644
--- a/src/CMake/SetupTests.cmake
+++ b/src/CMake/SetupTests.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/CMake/tests/fortran_test_obj_support.f b/src/CMake/tests/fortran_test_obj_support.f
index bd77bbf6ab9301d227a60f4c5f46b0bbc34b11bf..e2ca1a1f8688d7e526d4593398091db3c1c12d1a 100644
--- a/src/CMake/tests/fortran_test_obj_support.f
+++ b/src/CMake/tests/fortran_test_obj_support.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/CMake/thirdparty/FindNumPy.cmake b/src/CMake/thirdparty/FindNumPy.cmake
index b7235d373a2b1b0504b1a0a1be8fd1c7c9417bb0..f04249c9decd20258fd6a2cb58f0c276588020ea 100644
--- a/src/CMake/thirdparty/FindNumPy.cmake
+++ b/src/CMake/thirdparty/FindNumPy.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/thirdparty/FindSphinx.cmake b/src/CMake/thirdparty/FindSphinx.cmake
index b7dfeb7cc240009b12085d6edda922ea8d6c966a..b0e143f083c5776ff3da4c42a1bb3cf1356f8da3 100644
--- a/src/CMake/thirdparty/FindSphinx.cmake
+++ b/src/CMake/thirdparty/FindSphinx.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/thirdparty/SetupHDF5.cmake b/src/CMake/thirdparty/SetupHDF5.cmake
index 53cbb2400e8571cad370f2222d84b2de5be84135..269b7c28470ecb4748e708b5ec502957ef7948d4 100644
--- a/src/CMake/thirdparty/SetupHDF5.cmake
+++ b/src/CMake/thirdparty/SetupHDF5.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/thirdparty/SetupPython.cmake b/src/CMake/thirdparty/SetupPython.cmake
index eb45ecc565bac601e189579bd27369602d6430b6..2ae20385360de5a43ebb97978b43ad826d1badfd 100644
--- a/src/CMake/thirdparty/SetupPython.cmake
+++ b/src/CMake/thirdparty/SetupPython.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/thirdparty/SetupRapidJSON.cmake b/src/CMake/thirdparty/SetupRapidJSON.cmake
index 3f4ea183d4509a50251d69f02fb25682fe6e251f..e0223099a7bfed58eb44d5b9bc0f429748cf7fd7 100644
--- a/src/CMake/thirdparty/SetupRapidJSON.cmake
+++ b/src/CMake/thirdparty/SetupRapidJSON.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMake/thirdparty/SetupSilo.cmake b/src/CMake/thirdparty/SetupSilo.cmake
index d37907ce68c24f8794f7fa30df0a394ad2de1b64..cc7de116760c51bb00aff4861c697f58ff893893 100644
--- a/src/CMake/thirdparty/SetupSilo.cmake
+++ b/src/CMake/thirdparty/SetupSilo.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4839c8f4f6a47e4d206d2c02e8ab699c386853e7..591d0f84ea6bcbaa81aea4347a52010231986497 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
@@ -58,7 +58,7 @@ endif()
 # Conduit
 ################################
 
-project(conduit VERSION "0.2.0")
+project(conduit VERSION "0.2.1")
 
 ################################
 # Build Options
diff --git a/src/docs/CMakeLists.txt b/src/docs/CMakeLists.txt
index 7ce7a99408c02c03125c2f8aef26c5af08913bc9..c84ebc82344fe9a3ea246243283e26f5c766acf6 100644
--- a/src/docs/CMakeLists.txt
+++ b/src/docs/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/docs/doxygen/CMakeLists.txt b/src/docs/doxygen/CMakeLists.txt
index 29098415d7eb1851adb3addeea2d5b27427fe1b1..82e3edd678b0b31b2ff0caebf7a67ac55c69a311 100644
--- a/src/docs/doxygen/CMakeLists.txt
+++ b/src/docs/doxygen/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/docs/doxygen/Doxyfile.in b/src/docs/doxygen/Doxyfile.in
index bcdf2739fa5af9adc231fcac044bfce052294b47..27dd326c74eef84842c560a5b73f5aeba6b51e07 100644
--- a/src/docs/doxygen/Doxyfile.in
+++ b/src/docs/doxygen/Doxyfile.in
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/docs/sphinx/CMakeLists.txt b/src/docs/sphinx/CMakeLists.txt
index 686ae68a445edc04169838babe676aa9f60d7f73..23be111deb2ab016d4507e7cf35291ace6565bc0 100644
--- a/src/docs/sphinx/CMakeLists.txt
+++ b/src/docs/sphinx/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/docs/sphinx/blueprint.rst b/src/docs/sphinx/blueprint.rst
index c5d8dc3cf1993d7145d5d51c1dd66799e77537d7..0f4cdac584ca6463f2406d255a7225edb3b44ef5 100644
--- a/src/docs/sphinx/blueprint.rst
+++ b/src/docs/sphinx/blueprint.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/blueprint_mcarray.rst b/src/docs/sphinx/blueprint_mcarray.rst
index e3bbc4cff09d5bf64ac47f1137d359d0e087f4e2..cdab5cb50e19186bf297e205f4a4e86b3d4c6c0a 100644
--- a/src/docs/sphinx/blueprint_mcarray.rst
+++ b/src/docs/sphinx/blueprint_mcarray.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/blueprint_mesh.rst b/src/docs/sphinx/blueprint_mesh.rst
index ab72632efa94c47e756061c6b9a72d7fa230b2c7..a826c4091d6350b6193000abdbb73be149774bf8 100644
--- a/src/docs/sphinx/blueprint_mesh.rst
+++ b/src/docs/sphinx/blueprint_mesh.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/building.rst b/src/docs/sphinx/building.rst
index 36abfb79ef692da9eda2329528ca1162e8f60cd5..26493c7cc773bcec1862e19b8c3a07dbe0322ec8 100644
--- a/src/docs/sphinx/building.rst
+++ b/src/docs/sphinx/building.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/conduit.rst b/src/docs/sphinx/conduit.rst
index d043459825b6380bee73691f9db3e32180b4668a..98c507a8b9d3dba91e47f69b723071d7d8279c18 100644
--- a/src/docs/sphinx/conduit.rst
+++ b/src/docs/sphinx/conduit.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/conduit_api.rst b/src/docs/sphinx/conduit_api.rst
index acda7d1bb0c82a432ca72accb1bdfdc48ef54c60..2fc11ee37a88464b8d8aec3ddd7223c061c2869a 100644
--- a/src/docs/sphinx/conduit_api.rst
+++ b/src/docs/sphinx/conduit_api.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/conf.py b/src/docs/sphinx/conf.py
index 4ad2e531e727dea269d9ffc52aec9a83f55f438e..f8b941949680b5e36388c08f198d68cbdb7303e8 100644
--- a/src/docs/sphinx/conf.py
+++ b/src/docs/sphinx/conf.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 #
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
@@ -101,7 +101,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'Conduit'
-copyright = u'2014-2016, LLNS'
+copyright = u'2014-2017, LLNS'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
diff --git a/src/docs/sphinx/developer.rst b/src/docs/sphinx/developer.rst
index d250c8dde6c227b6e249696b751ace1a65bad0a0..66e9b6f4007e3a3ca6e59c9dbbdfb23636e9dd21 100644
--- a/src/docs/sphinx/developer.rst
+++ b/src/docs/sphinx/developer.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/glossary.rst b/src/docs/sphinx/glossary.rst
index 3b63d90a8db782cb69762003674011a4d216a7da..5d0e0c47037a6b66fec81f22ad95e461fcdbcb9f 100644
--- a/src/docs/sphinx/glossary.rst
+++ b/src/docs/sphinx/glossary.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/index.rst b/src/docs/sphinx/index.rst
index e0040eeb39c769296d539f30cca44bd85f55820c..5ed992507f7e2cd488766566ff44c0df66561945 100644
--- a/src/docs/sphinx/index.rst
+++ b/src/docs/sphinx/index.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/licenses.rst b/src/docs/sphinx/licenses.rst
index 16123524abd6568524cd57fb64130ecb2a3f6eac..e90b16c6c8bbe18670ee0c5130af85f9440d3e46 100644
--- a/src/docs/sphinx/licenses.rst
+++ b/src/docs/sphinx/licenses.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. #
 .. # Produced at the Lawrence Livermore National Laboratory
 .. #
diff --git a/src/docs/sphinx/presentations.rst b/src/docs/sphinx/presentations.rst
index e835fc852400a160502429610cb12659deef50b7..25c9850a4caf60dc221fb3412f69dc24b8d68008 100644
--- a/src/docs/sphinx/presentations.rst
+++ b/src/docs/sphinx/presentations.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. #
 .. # Produced at the Lawrence Livermore National Laboratory
 .. #
diff --git a/src/docs/sphinx/relay.rst b/src/docs/sphinx/relay.rst
index d9ebce7ff5a19d2e8c3104a8d64c5370d1968726..05a9d304d577c9b4817b917049e867bea65f3b4c 100644
--- a/src/docs/sphinx/relay.rst
+++ b/src/docs/sphinx/relay.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/releases.rst b/src/docs/sphinx/releases.rst
index f574eec5766e80108a0e91a756ff92c645cebfd4..46d81728433c1d0964f5787d913469dffebf9b3b 100644
--- a/src/docs/sphinx/releases.rst
+++ b/src/docs/sphinx/releases.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. #
 .. # Produced at the Lawrence Livermore National Laboratory
 .. #
diff --git a/src/docs/sphinx/tutorial_basics.rst b/src/docs/sphinx/tutorial_basics.rst
index 125998962f2c486b73286958bc98d75f85b73730..3c4b3bb8666e12e048d77c91496781dba7220608 100644
--- a/src/docs/sphinx/tutorial_basics.rst
+++ b/src/docs/sphinx/tutorial_basics.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/tutorial_errors.rst b/src/docs/sphinx/tutorial_errors.rst
index 6ea41c0b201e7782bb47516c2adbc877ef86ec30..6db8ad68332f59d5a1dcac37a0625b60cf2cc97b 100644
--- a/src/docs/sphinx/tutorial_errors.rst
+++ b/src/docs/sphinx/tutorial_errors.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/tutorial_json.rst b/src/docs/sphinx/tutorial_json.rst
index fcdec9baaa4d326288e065570452b8cd9b8d9971..18d9673e29c02c107bc4c6533648d64c3655baff 100644
--- a/src/docs/sphinx/tutorial_json.rst
+++ b/src/docs/sphinx/tutorial_json.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/tutorial_numeric.rst b/src/docs/sphinx/tutorial_numeric.rst
index 1cf884abf232771e752273b2efe83a4930b82131..0eacee1f7389ab9edfcc8b79a6f66d1fbbfc83a3 100644
--- a/src/docs/sphinx/tutorial_numeric.rst
+++ b/src/docs/sphinx/tutorial_numeric.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/tutorial_ownership.rst b/src/docs/sphinx/tutorial_ownership.rst
index e27dde978870d6f4f4c0bfb883c1c383b33c49dc..374c581fc982543f57cb689ed144a08d62176516 100644
--- a/src/docs/sphinx/tutorial_ownership.rst
+++ b/src/docs/sphinx/tutorial_ownership.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/tutorial_update.rst b/src/docs/sphinx/tutorial_update.rst
index 9a1b7e043881a3f5743e7f12f886620c0a216cf7..0464623b55326a20f64b300fc44dc9b7b20b13b3 100644
--- a/src/docs/sphinx/tutorial_update.rst
+++ b/src/docs/sphinx/tutorial_update.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/docs/sphinx/user.rst b/src/docs/sphinx/user.rst
index 49119c9e4e55832161a320253c59e41ddfe44252..8d304fd7e34f2b9f960a54853ec6139ee7395541 100644
--- a/src/docs/sphinx/user.rst
+++ b/src/docs/sphinx/user.rst
@@ -1,5 +1,5 @@
 .. ############################################################################
-.. # Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+.. # Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 .. # 
 .. # Produced at the Lawrence Livermore National Laboratory
 .. # 
diff --git a/src/examples/using-with-cmake/CMakeLists.txt b/src/examples/using-with-cmake/CMakeLists.txt
index b55188d9e2637695e19917ce4f145d4dc3c59e22..6e814755ba0c59c92b0642fe16736acc2b849d47 100644
--- a/src/examples/using-with-cmake/CMakeLists.txt
+++ b/src/examples/using-with-cmake/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/examples/using-with-cmake/FindConduit.cmake b/src/examples/using-with-cmake/FindConduit.cmake
index ce1eab719e30eb0036601be7530cf1d5d00ed7f0..362f3185def5d9449c766ada86f8a3aaa8e946f2 100644
--- a/src/examples/using-with-cmake/FindConduit.cmake
+++ b/src/examples/using-with-cmake/FindConduit.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/examples/using-with-cmake/example.cpp b/src/examples/using-with-cmake/example.cpp
index e9158a2324e5579d49009513c18a2cb39223734a..c35089c0b15795d6bd25b0e58ea5e05cf98a894a 100644
--- a/src/examples/using-with-cmake/example.cpp
+++ b/src/examples/using-with-cmake/example.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/examples/using-with-make/Makefile b/src/examples/using-with-make/Makefile
index 230a142825f2ceb8b63f2fbb7e14a2d648b69d9b..93e18cb1a5daaf8aea933fc65187ec541217b3a9 100644
--- a/src/examples/using-with-make/Makefile
+++ b/src/examples/using-with-make/Makefile
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/examples/using-with-make/example.cpp b/src/examples/using-with-make/example.cpp
index 7453d2a08f49d2ff11e684afe90cf4cc45e8877d..2a15880c2e89f174503cbb2fa66087011343b542 100644
--- a/src/examples/using-with-make/example.cpp
+++ b/src/examples/using-with-make/example.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/CMakeLists.txt b/src/libs/CMakeLists.txt
index 4dfcf98d718d37cd7fc7ee45e545f8ef58d588b5..19d980fc9582273035dbbbde278da834294aefe4 100644
--- a/src/libs/CMakeLists.txt
+++ b/src/libs/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/CMakeLists.txt b/src/libs/blueprint/CMakeLists.txt
index d783e9146df6404316231b3dc815392a6efb6a12..6cf53bd837a10bcceb294c4803cdb45c2fec474d 100644
--- a/src/libs/blueprint/CMakeLists.txt
+++ b/src/libs/blueprint/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/c/conduit_blueprint.h b/src/libs/blueprint/c/conduit_blueprint.h
index 682e379d607cd5ccebafbfbf543ca3a50e17ee3f..ceb2b3b9be0115de13e565cea7428a5104251978 100644
--- a/src/libs/blueprint/c/conduit_blueprint.h
+++ b/src/libs/blueprint/c/conduit_blueprint.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/c/conduit_blueprint_c.cpp b/src/libs/blueprint/c/conduit_blueprint_c.cpp
index d3482d9c07a5ce3c9ef3d96f97e08709855d9f6b..c626d00dc75ec049c395ef1fcf4492beaffc259a 100644
--- a/src/libs/blueprint/c/conduit_blueprint_c.cpp
+++ b/src/libs/blueprint/c/conduit_blueprint_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/c/conduit_blueprint_mcarray.h b/src/libs/blueprint/c/conduit_blueprint_mcarray.h
index 5205fe71dd90aa2feb5eb8327e5b469480e36cba..d0626fbc7e25c6d431eef486cbd60ce746818299 100644
--- a/src/libs/blueprint/c/conduit_blueprint_mcarray.h
+++ b/src/libs/blueprint/c/conduit_blueprint_mcarray.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp b/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp
index 92f111be21eb6bd0bc6e87fe4b937598a598cd7f..5c184445db02f9727811745adf5fd240f53653d3 100644
--- a/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp
+++ b/src/libs/blueprint/c/conduit_blueprint_mcarray_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/c/conduit_blueprint_mesh.h b/src/libs/blueprint/c/conduit_blueprint_mesh.h
index 797174bb8256f2ec71711ac75b87f1895659f7d9..0408e82bba1d6e65ec4d422213349305eaa49501 100644
--- a/src/libs/blueprint/c/conduit_blueprint_mesh.h
+++ b/src/libs/blueprint/c/conduit_blueprint_mesh.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp b/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp
index aea5b83db1547b379f2280fd8a8a0d8ccc143fa9..ad325a41387fd19986b74daf9b6ec13806509169 100644
--- a/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp
+++ b/src/libs/blueprint/c/conduit_blueprint_mesh_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint.cpp b/src/libs/blueprint/conduit_blueprint.cpp
index db6f04b593cbc64ffdffd1ac9e69e59771f545e8..042c3aca788e831413ae40d786af49d093ecad36 100644
--- a/src/libs/blueprint/conduit_blueprint.cpp
+++ b/src/libs/blueprint/conduit_blueprint.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint.hpp b/src/libs/blueprint/conduit_blueprint.hpp
index 2af3c619f65e07c42ff8116fe85ec6a7ec473b8b..185716440455fa52731b2d9880a7ed224bc7a2c3 100644
--- a/src/libs/blueprint/conduit_blueprint.hpp
+++ b/src/libs/blueprint/conduit_blueprint.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_exports.h b/src/libs/blueprint/conduit_blueprint_exports.h
index 1a128e84001e651e398525061748f9d6546725d2..56105e01e036e8d68f12ca6deab178aef6c44855 100644
--- a/src/libs/blueprint/conduit_blueprint_exports.h
+++ b/src/libs/blueprint/conduit_blueprint_exports.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mcarray.cpp b/src/libs/blueprint/conduit_blueprint_mcarray.cpp
index 9d3509be9857747d07c55de62125fe002855b2bf..bb12c9eda26fc0ebfb9346915e9ba2029c2f8b9d 100644
--- a/src/libs/blueprint/conduit_blueprint_mcarray.cpp
+++ b/src/libs/blueprint/conduit_blueprint_mcarray.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mcarray.hpp b/src/libs/blueprint/conduit_blueprint_mcarray.hpp
index aa0d48ed6134d7f78befa46e7a6847a11134cc68..98dac827dc4fe96de5f0f1f03c2df02029fb548d 100644
--- a/src/libs/blueprint/conduit_blueprint_mcarray.hpp
+++ b/src/libs/blueprint/conduit_blueprint_mcarray.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp b/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp
index bca3768769179f5d89b7077f2429df8c7075d442..1a042fb887664cd164d37b099734dd322c0668f3 100644
--- a/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp
+++ b/src/libs/blueprint/conduit_blueprint_mcarray_examples.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp b/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp
index 5f08840e25790a1831a8abe8725695fcf4de64c2..93218a02f831161eecf4c99d8c51927299c7f472 100644
--- a/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp
+++ b/src/libs/blueprint/conduit_blueprint_mcarray_examples.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mesh.cpp b/src/libs/blueprint/conduit_blueprint_mesh.cpp
index cd80bb5ea0c7ce245e6052babe8620716f071bd3..51bf254ab6bd0489c4aaf1b72f4c3fe3beab0833 100644
--- a/src/libs/blueprint/conduit_blueprint_mesh.cpp
+++ b/src/libs/blueprint/conduit_blueprint_mesh.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mesh.hpp b/src/libs/blueprint/conduit_blueprint_mesh.hpp
index f44b42ea3d5cb934a5d28c8b74fdd41335d55225..6d583fa5d1cf6783f9794596a583c39a8ac3eca2 100644
--- a/src/libs/blueprint/conduit_blueprint_mesh.hpp
+++ b/src/libs/blueprint/conduit_blueprint_mesh.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp b/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp
index 764a04a4d5961c51cce0bc3c866b14c9018a849e..cd125e0a5dba613a40560a291fa7e9e65f23e75b 100644
--- a/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp
+++ b/src/libs/blueprint/conduit_blueprint_mesh_examples.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp b/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp
index 6a8d1ea626e4dd2cf5fcfb3121543277f1ed395e..a747cadc0e43070db07338164fd205b6e6c8af92 100644
--- a/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp
+++ b/src/libs/blueprint/conduit_blueprint_mesh_examples.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_utils.cpp b/src/libs/blueprint/conduit_blueprint_utils.cpp
index e766657dd0423405b539a68320b4fb955b046b6b..05f03b602cf10d1b5aa37e6abb556c3af084ba6a 100644
--- a/src/libs/blueprint/conduit_blueprint_utils.cpp
+++ b/src/libs/blueprint/conduit_blueprint_utils.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_utils.hpp b/src/libs/blueprint/conduit_blueprint_utils.hpp
index 7025497fb582fce9ecaedeb9ba77bc0d2dfcfd87..7814240d83b2fdfd5a5c68de66ce042f7be3928b 100644
--- a/src/libs/blueprint/conduit_blueprint_utils.hpp
+++ b/src/libs/blueprint/conduit_blueprint_utils.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/conduit_blueprint_verify_exe.cpp b/src/libs/blueprint/conduit_blueprint_verify_exe.cpp
index 5df172d7da7aab7cef702a655d65ee3521aacbc7..8ffeeacfda17c446c782e6c180b96ce0a11738b0 100644
--- a/src/libs/blueprint/conduit_blueprint_verify_exe.cpp
+++ b/src/libs/blueprint/conduit_blueprint_verify_exe.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/fortran/conduit_blueprint_fortran.f b/src/libs/blueprint/fortran/conduit_blueprint_fortran.f
index 0b6c0d0439be0909be8122477ac39b5c733b45ca..7fa9efdbeaea915ba4ed35f3e3b7d7cfc0031bf9 100644
--- a/src/libs/blueprint/fortran/conduit_blueprint_fortran.f
+++ b/src/libs/blueprint/fortran/conduit_blueprint_fortran.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f b/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f
index fd7ec832da8a568de94ab16cc39650847b829883..19e5bc04f01981275ad3bf9cad7d6faeeeb6b186 100644
--- a/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f
+++ b/src/libs/blueprint/fortran/conduit_blueprint_mcarray_fortran.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f b/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f
index 7679ba836de61ddc0af85725d98131274f979788..286d34a831400ca4b7313b88f2794ec4aa237b97 100644
--- a/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f
+++ b/src/libs/blueprint/fortran/conduit_blueprint_mesh_fortran.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/blueprint/python/CMakeLists.txt b/src/libs/blueprint/python/CMakeLists.txt
index 6177c5aeadd25d1fedd71cbe9c1476e9aa90d08f..465a07793aa9939cdaf2743544174f0224deafc0 100644
--- a/src/libs/blueprint/python/CMakeLists.txt
+++ b/src/libs/blueprint/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp
index b5c2da54fdc37c14944ac3af659c48e993690920..94cb0693eaabd2a5a58e4354d9121d9b0a1acffe 100644
--- a/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp
+++ b/src/libs/blueprint/python/conduit_blueprint_mcarray_examples_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp
index 829109d755b4816555cc0cbe92e2afca00c5f541..4133137ef6dcb6058343499ae1dd84e2cd18ec39 100644
--- a/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp
+++ b/src/libs/blueprint/python/conduit_blueprint_mcarray_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp
index 219d0c16ed133ae0dca8a9496dfd5957999cd409..b57ce8796c2f5f9e3fc362fbab772b006181593d 100644
--- a/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp
+++ b/src/libs/blueprint/python/conduit_blueprint_mesh_examples_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp b/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp
index 67e28e2a9c7461d5f972ad56f31c2e952807fa39..8205eea5c0359d7f18fab8829b1382e538860079 100644
--- a/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp
+++ b/src/libs/blueprint/python/conduit_blueprint_mesh_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/conduit_blueprint_python.cpp b/src/libs/blueprint/python/conduit_blueprint_python.cpp
index a449ce7324b36efd99dab416143348662fe0ccd6..2baed0eb769b45fbd7e4fa579f840d4e8680c792 100644
--- a/src/libs/blueprint/python/conduit_blueprint_python.cpp
+++ b/src/libs/blueprint/python/conduit_blueprint_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/conduit_blueprint_python_exports.h b/src/libs/blueprint/python/conduit_blueprint_python_exports.h
index 4be009464d7818cb33ed5f4f14f89f91c5c339bc..8e759168377fff7e2e6f667292375b2fb2374259 100644
--- a/src/libs/blueprint/python/conduit_blueprint_python_exports.h
+++ b/src/libs/blueprint/python/conduit_blueprint_python_exports.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/blueprint/python/py_src/__init__.py b/src/libs/blueprint/python/py_src/__init__.py
index 5ee7a0a30454e23b9ff2b69a76089c859689c83f..f03e22503d429e1754be715229d6b1a9a5ca19f8 100644
--- a/src/libs/blueprint/python/py_src/__init__.py
+++ b/src/libs/blueprint/python/py_src/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/python/py_src/mcarray/__init__.py b/src/libs/blueprint/python/py_src/mcarray/__init__.py
index 532da0b593faab6d046188734c0867d6970380b7..1ae8958c89a62bb1b9a8414a968672f58bd8fb15 100644
--- a/src/libs/blueprint/python/py_src/mcarray/__init__.py
+++ b/src/libs/blueprint/python/py_src/mcarray/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py b/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py
index e883ef91b85277c134481e371754a51a9152e118..21c5c8852afc2f149292275eb1b0a07737ed06c2 100644
--- a/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py
+++ b/src/libs/blueprint/python/py_src/mcarray/examples/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/python/py_src/mesh/__init__.py b/src/libs/blueprint/python/py_src/mesh/__init__.py
index ac7991e1f8c40441ed1434aba5478942e9420820..5de0418f6827128c33fdc675d91c1d822f9a1bd3 100644
--- a/src/libs/blueprint/python/py_src/mesh/__init__.py
+++ b/src/libs/blueprint/python/py_src/mesh/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/blueprint/python/py_src/mesh/examples/__init__.py b/src/libs/blueprint/python/py_src/mesh/examples/__init__.py
index 905f3656f8d785f82a03090d2d00930702eb206f..9036ffd31e8e7817976e6bebd7e5e4c086cc1fe4 100644
--- a/src/libs/blueprint/python/py_src/mesh/examples/__init__.py
+++ b/src/libs/blueprint/python/py_src/mesh/examples/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/conduit/CMake/BitwidthChecks.cmake b/src/libs/conduit/CMake/BitwidthChecks.cmake
index 029496f327427a3ac5157ce6f166444d832d086f..42f768a05ef0b81075d20cce931f31a272cbcb70 100644
--- a/src/libs/conduit/CMake/BitwidthChecks.cmake
+++ b/src/libs/conduit/CMake/BitwidthChecks.cmake
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/libs/conduit/CMakeLists.txt b/src/libs/conduit/CMakeLists.txt
index a3012fec0019c2c6d55a61e354d0d17f7152888d..abf13ca6a14519b6b5e96dc24bd978620b56ddad 100644
--- a/src/libs/conduit/CMakeLists.txt
+++ b/src/libs/conduit/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/libs/conduit/c/conduit.h b/src/libs/conduit/c/conduit.h
index 4007a9ede11c7295061bb1d3272c5fb8e8263e57..30c3209f4ea3d3b06df24061fd7d90d629ee7f42 100644
--- a/src/libs/conduit/c/conduit.h
+++ b/src/libs/conduit/c/conduit.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/c/conduit_c.cpp b/src/libs/conduit/c/conduit_c.cpp
index 26b6e530cb9e7a7c645edf75538b5eda0eae1a74..0e562445beaedec8d84b6c8801dec7cef45c06ae 100644
--- a/src/libs/conduit/c/conduit_c.cpp
+++ b/src/libs/conduit/c/conduit_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/c/conduit_cpp_to_c.cpp b/src/libs/conduit/c/conduit_cpp_to_c.cpp
index e495829d80d8535a98b94d708efa5f8414031475..5e002fd140dc96b28c82d87e6dfcb9e97a4ba68f 100644
--- a/src/libs/conduit/c/conduit_cpp_to_c.cpp
+++ b/src/libs/conduit/c/conduit_cpp_to_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/c/conduit_cpp_to_c.hpp b/src/libs/conduit/c/conduit_cpp_to_c.hpp
index 5ca1fa0115dec59fedb16956d39d6e315abc6617..2809e2fa759202518948f5e76afd6681414e9eab 100644
--- a/src/libs/conduit/c/conduit_cpp_to_c.hpp
+++ b/src/libs/conduit/c/conduit_cpp_to_c.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 //
 // Produced at the Lawrence Livermore National Laboratory
 //
diff --git a/src/libs/conduit/c/conduit_node.h b/src/libs/conduit/c/conduit_node.h
index e466ed77495200c80a1ffb38305ca53758fdd37b..d508ed1985ecb882d5384ccbe678e1586b393b8c 100644
--- a/src/libs/conduit/c/conduit_node.h
+++ b/src/libs/conduit/c/conduit_node.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 //
 // Produced at the Lawrence Livermore National Laboratory
 //
diff --git a/src/libs/conduit/c/conduit_node_c.cpp b/src/libs/conduit/c/conduit_node_c.cpp
index 8e7d1eddbac8ef33081003ad4919401c9c073941..0e7258e4ccf54ac20a4c563a910e75e2229545ac 100644
--- a/src/libs/conduit/c/conduit_node_c.cpp
+++ b/src/libs/conduit/c/conduit_node_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit.hpp b/src/libs/conduit/conduit.hpp
index cad894e1ff76823bbc6bb2b44d5c1811ee1e0b00..eb3dfdc4649e1cf4df0b2f465d535f958d7e55f9 100644
--- a/src/libs/conduit/conduit.hpp
+++ b/src/libs/conduit/conduit.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_bitwidth_style_types.h.in b/src/libs/conduit/conduit_bitwidth_style_types.h.in
index 27b8d138a59ff0aace0d2a144f8043d764a82308..9755910685e5f9f9b4f790e95ec2ce793c9460ab 100644
--- a/src/libs/conduit/conduit_bitwidth_style_types.h.in
+++ b/src/libs/conduit/conduit_bitwidth_style_types.h.in
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_config.h.in b/src/libs/conduit/conduit_config.h.in
index 973ebc97e8530263c8536217e5d5fdad0e81e9ac..3fce46b6682c69e4701577bac3521219388c11d1 100644
--- a/src/libs/conduit/conduit_config.h.in
+++ b/src/libs/conduit/conduit_config.h.in
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_core.cpp b/src/libs/conduit/conduit_core.cpp
index a6e1cf3a2ed144678f616f8a30c296234c9b85c4..794f522118047c804cf0fc7ca0d40d4ddff0943e 100644
--- a/src/libs/conduit/conduit_core.cpp
+++ b/src/libs/conduit/conduit_core.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_core.hpp b/src/libs/conduit/conduit_core.hpp
index 0e5780e328483d95e065722c12970635a4e662c2..6e9c9450fc99ee627c3ac96e9a04dc371aab6b42 100644
--- a/src/libs/conduit/conduit_core.hpp
+++ b/src/libs/conduit/conduit_core.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_data_array.cpp b/src/libs/conduit/conduit_data_array.cpp
index 54bd56dd4ac917ed736b29e021175a4aa3324464..37f5b0524858fa4c72ac5345db49fca1599fe139 100644
--- a/src/libs/conduit/conduit_data_array.cpp
+++ b/src/libs/conduit/conduit_data_array.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_data_array.hpp b/src/libs/conduit/conduit_data_array.hpp
index 996a303d54bbca3486fc1a28ccb4857f1fc11162..589e2143d74b1c90a4770dd674a10bfe7a5d1866 100644
--- a/src/libs/conduit/conduit_data_array.hpp
+++ b/src/libs/conduit/conduit_data_array.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_data_type.cpp b/src/libs/conduit/conduit_data_type.cpp
index cde14e57fe3a0685c87025a55ac438660b6ec635..c7d9fb390053e9de095bbbb97c14a69b073c62ee 100644
--- a/src/libs/conduit/conduit_data_type.cpp
+++ b/src/libs/conduit/conduit_data_type.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_data_type.hpp b/src/libs/conduit/conduit_data_type.hpp
index 14b07fc0b8938e42262e0c2f1461c93faae3a51f..437549b841d5e6416d08457a1fd57e48a9f361ba 100644
--- a/src/libs/conduit/conduit_data_type.hpp
+++ b/src/libs/conduit/conduit_data_type.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_endianness.cpp b/src/libs/conduit/conduit_endianness.cpp
index 128206d9f8e7f33a34738d9cf120afb78fb097ab..780343795ddc0d6e12b49bb0ebad50ff493a771c 100644
--- a/src/libs/conduit/conduit_endianness.cpp
+++ b/src/libs/conduit/conduit_endianness.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_endianness.hpp b/src/libs/conduit/conduit_endianness.hpp
index 0044339c9cb23603dee4ddfe9028e81b04a2a075..b8d77ce7b9f5c193f3a5c89bb03646cbc0bedd9c 100644
--- a/src/libs/conduit/conduit_endianness.hpp
+++ b/src/libs/conduit/conduit_endianness.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_endianness_types.h b/src/libs/conduit/conduit_endianness_types.h
index 791bc1500e9309110d30af8ab1139480e6e4313e..d98f2f3cc0ae0c7b5e6f92ce62137b6918e09c57 100644
--- a/src/libs/conduit/conduit_endianness_types.h
+++ b/src/libs/conduit/conduit_endianness_types.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_error.cpp b/src/libs/conduit/conduit_error.cpp
index 0fe3e515283993e445e2301aca925204ca754ef6..432bd7fc266ade9bd17e2bccdfaf47476390a322 100644
--- a/src/libs/conduit/conduit_error.cpp
+++ b/src/libs/conduit/conduit_error.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_error.hpp b/src/libs/conduit/conduit_error.hpp
index 47ccbda867a90e7cbc97094b8fea2a7615e5c2c9..0e0035857f6d58460a22541f19000c1e9719ad14 100644
--- a/src/libs/conduit/conduit_error.hpp
+++ b/src/libs/conduit/conduit_error.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_exports.h b/src/libs/conduit/conduit_exports.h
index 6c96d7ad8f21bfbe362ca9d764aaf5161dc44fef..8205379c50a6bb47dc90d8a8cb3fc59d009c9246 100644
--- a/src/libs/conduit/conduit_exports.h
+++ b/src/libs/conduit/conduit_exports.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_generator.cpp b/src/libs/conduit/conduit_generator.cpp
index 6f3aea7b39a11c53390687e07250fc4b681dbe85..c82fde5cab16546f849500bc36c2d6d569aa7cec 100644
--- a/src/libs/conduit/conduit_generator.cpp
+++ b/src/libs/conduit/conduit_generator.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_generator.hpp b/src/libs/conduit/conduit_generator.hpp
index bf8be10c6ae1ffa1453fd8885db0a81e667c46ee..74c51ee82c8eadd06ae2c6b436379887037caf37 100644
--- a/src/libs/conduit/conduit_generator.hpp
+++ b/src/libs/conduit/conduit_generator.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_license.hpp b/src/libs/conduit/conduit_license.hpp
index e474593efd694c0a9bbd33fbcce11d7cb0ad94fd..99c83ce85b81209b62f1d5f4a31b25e4ebf46788 100644
--- a/src/libs/conduit/conduit_license.hpp
+++ b/src/libs/conduit/conduit_license.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
@@ -68,7 +68,7 @@
 #ifndef CONDUIT_LICENSE_TEXT_HPP
 #define CONDUIT_LICENSE_TEXT_HPP
 
-std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.\n"
+std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.\n"
 "\n"
 "Produced at the Lawrence Livermore National Laboratory\n"
 "\n"
diff --git a/src/libs/conduit/conduit_node.cpp b/src/libs/conduit/conduit_node.cpp
index 87838595c40d8e0acc929386d37cbd61fee127b8..877682c1afb73845c28354f3a3c8efbda0928eb3 100644
--- a/src/libs/conduit/conduit_node.cpp
+++ b/src/libs/conduit/conduit_node.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_node.hpp b/src/libs/conduit/conduit_node.hpp
index e48051f83a527b0025491eb347675c930e9fdbe1..0a342246e0837bb688197e35cac8c644b2cfb333 100644
--- a/src/libs/conduit/conduit_node.hpp
+++ b/src/libs/conduit/conduit_node.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_node_iterator.cpp b/src/libs/conduit/conduit_node_iterator.cpp
index d4f78b1be3f66c4ee7c2a0d8737042293073e62d..17458bf7f77e261163d7ffd19c1a7d54a32c3e32 100644
--- a/src/libs/conduit/conduit_node_iterator.cpp
+++ b/src/libs/conduit/conduit_node_iterator.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_node_iterator.hpp b/src/libs/conduit/conduit_node_iterator.hpp
index 3aef15f7350d7df86d6104386007497ea053164d..3eaba9ffd450399be49a88c70defb9be9aeaff8d 100644
--- a/src/libs/conduit/conduit_node_iterator.hpp
+++ b/src/libs/conduit/conduit_node_iterator.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_schema.cpp b/src/libs/conduit/conduit_schema.cpp
index 36e3ae9635d7753fdb4b2ccbc897bf076d8d96b8..71e7faa9c733e5b2101d9576de635e82228a4f0f 100644
--- a/src/libs/conduit/conduit_schema.cpp
+++ b/src/libs/conduit/conduit_schema.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_schema.hpp b/src/libs/conduit/conduit_schema.hpp
index 2b6eb36e6e36077587ff1d2d2f9508d5687988e5..41d348eea5e11c4f648d32a5d593de15a5ec271d 100644
--- a/src/libs/conduit/conduit_schema.hpp
+++ b/src/libs/conduit/conduit_schema.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_utils.cpp b/src/libs/conduit/conduit_utils.cpp
index 0f0d47c24f4504e45d03161f51807c1c6dd4ac23..07833d2c6a043ecd9252b5e89588db0b54a18dc1 100644
--- a/src/libs/conduit/conduit_utils.cpp
+++ b/src/libs/conduit/conduit_utils.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/conduit_utils.hpp b/src/libs/conduit/conduit_utils.hpp
index bd7e7e1c14d55d5f4d827fe849fb098c2615fa27..6b6d0680742291af777b10b2b8a7b737e07cf12a 100644
--- a/src/libs/conduit/conduit_utils.hpp
+++ b/src/libs/conduit/conduit_utils.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/fortran/conduit_fortran.F b/src/libs/conduit/fortran/conduit_fortran.F
index cd0245b80182ccb580a7d1e80629110f3b09f448..4edf890980f614efe2fcaa3950fa7a99a8f9221d 100644
--- a/src/libs/conduit/fortran/conduit_fortran.F
+++ b/src/libs/conduit/fortran/conduit_fortran.F
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in b/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in
index 8cf99dea270e8c1162fb9b3d9ffa62ab52e69d61..df9a1e8971b0997e36b73d6b0032254a2f8becfd 100644
--- a/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in
+++ b/src/libs/conduit/fortran/conduit_fortran_bitwidth_style_types.inc.in
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/conduit/fortran/conduit_fortran_obj.f b/src/libs/conduit/fortran/conduit_fortran_obj.f
index 49d794d6e0fee26d5197a827f0c0265ee57ca011..5fe9861aae9be3276ee95d403340f97905b2f0a2 100644
--- a/src/libs/conduit/fortran/conduit_fortran_obj.f
+++ b/src/libs/conduit/fortran/conduit_fortran_obj.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/conduit/python/CMakeLists.txt b/src/libs/conduit/python/CMakeLists.txt
index ce1f948ae9505bc2d41e1ff1570822939503a953..8b22fb7d0a600b8b321f68616e562b52294fb722 100644
--- a/src/libs/conduit/python/CMakeLists.txt
+++ b/src/libs/conduit/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/conduit/python/conduit_python.cpp b/src/libs/conduit/python/conduit_python.cpp
index 32a502470143890103df154b21bbf08ef5ef35cf..be87616cd9f99ffdfbcd1258bd712af59aed9a84 100644
--- a/src/libs/conduit/python/conduit_python.cpp
+++ b/src/libs/conduit/python/conduit_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/python/conduit_python.hpp b/src/libs/conduit/python/conduit_python.hpp
index 9b3c8d7b2150dbb77ee5444bff3e02791945320e..96b2599800d2ab848e18e2ffcc5fed49b1058519 100644
--- a/src/libs/conduit/python/conduit_python.hpp
+++ b/src/libs/conduit/python/conduit_python.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/python/conduit_python_exports.hpp b/src/libs/conduit/python/conduit_python_exports.hpp
index 13512d1f3b987da0d91488cf3ce2579350aabbd3..8ab2a18ad4f7afda74a2aa12998d872654653068 100644
--- a/src/libs/conduit/python/conduit_python_exports.hpp
+++ b/src/libs/conduit/python/conduit_python_exports.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/conduit/python/py_src/__init__.py b/src/libs/conduit/python/py_src/__init__.py
index 9e7980976e0c77630f49f3083c636e1d27b7592c..6d0252c088ffb81d5b2e8f6577a6560293973391 100644
--- a/src/libs/conduit/python/py_src/__init__.py
+++ b/src/libs/conduit/python/py_src/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/CMakeLists.txt b/src/libs/relay/CMakeLists.txt
index 209e128b4972685ee50504c803d88bd34608e0ec..a0a70b751738659ddc552746946fd508535044e4 100644
--- a/src/libs/relay/CMakeLists.txt
+++ b/src/libs/relay/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/libs/relay/c/conduit_relay.h b/src/libs/relay/c/conduit_relay.h
index 6397398924e29fd9aaae2c07502bc7353cf1ad1a..d38b459b5e8670ab617d71476de77cf4eb46ccd2 100644
--- a/src/libs/relay/c/conduit_relay.h
+++ b/src/libs/relay/c/conduit_relay.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/c/conduit_relay_c.cpp b/src/libs/relay/c/conduit_relay_c.cpp
index 977de54ddef1babbea7e1c10f86358f745b9197b..85866cacaec2f312241020af30d344385f56bc4d 100644
--- a/src/libs/relay/c/conduit_relay_c.cpp
+++ b/src/libs/relay/c/conduit_relay_c.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay.cpp b/src/libs/relay/conduit_relay.cpp
index 242a21e551ee26aada2ed04f60d273f18f040816..ad86cc931a05710badcf96ba26b87b2c88857b7c 100644
--- a/src/libs/relay/conduit_relay.cpp
+++ b/src/libs/relay/conduit_relay.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay.hpp b/src/libs/relay/conduit_relay.hpp
index cad591a93cccbed79ba51b42ddbf155b12cad0bc..958adc475806ca7584513ef6cbd5891536449664 100644
--- a/src/libs/relay/conduit_relay.hpp
+++ b/src/libs/relay/conduit_relay.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_config.h.in b/src/libs/relay/conduit_relay_config.h.in
index f1ffe93187d3c2d6d4bdd3957f4cad0f74c0f653..b86d513d63bc6391168dad8b191d0d754ca34234 100644
--- a/src/libs/relay/conduit_relay_config.h.in
+++ b/src/libs/relay/conduit_relay_config.h.in
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_exports.h b/src/libs/relay/conduit_relay_exports.h
index 30de8e4d204607174ad4d35b569117714eb078a7..b0684c8a1e63e85ece840b79907c2d5f83b7cb27 100644
--- a/src/libs/relay/conduit_relay_exports.h
+++ b/src/libs/relay/conduit_relay_exports.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_hdf5.cpp b/src/libs/relay/conduit_relay_hdf5.cpp
index e2188ab77c4caa16b7468067d0a4aed8e14a4668..b2417a6fc5af5a63921d478bfe842109a77201d6 100644
--- a/src/libs/relay/conduit_relay_hdf5.cpp
+++ b/src/libs/relay/conduit_relay_hdf5.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_hdf5.hpp b/src/libs/relay/conduit_relay_hdf5.hpp
index 88e6c41ae0d123cbfbdfbb6649a2b638f6f83eb9..80dc0fc3521a64b2189233f7c7ea903b73fcae43 100644
--- a/src/libs/relay/conduit_relay_hdf5.hpp
+++ b/src/libs/relay/conduit_relay_hdf5.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_io.cpp b/src/libs/relay/conduit_relay_io.cpp
index 889aec083c9098d7b699175d780821356aaa0752..7e272cc2ce42e8d1115951e561b320cf18ae28cb 100644
--- a/src/libs/relay/conduit_relay_io.cpp
+++ b/src/libs/relay/conduit_relay_io.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_io.hpp b/src/libs/relay/conduit_relay_io.hpp
index 229c092b7c4d82b3bb55ffa4ad9c8881132cfa88..9a7958c6343f0768cd4691fd5eb8d9717357b927 100644
--- a/src/libs/relay/conduit_relay_io.hpp
+++ b/src/libs/relay/conduit_relay_io.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_mpi.cpp b/src/libs/relay/conduit_relay_mpi.cpp
index 156cf12638c2a6485a74cde0c77b0842f6d49ee2..28e7ee24404d6b7f51d77d9b700d4292e849de7c 100644
--- a/src/libs/relay/conduit_relay_mpi.cpp
+++ b/src/libs/relay/conduit_relay_mpi.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_mpi.hpp b/src/libs/relay/conduit_relay_mpi.hpp
index 4a2cf39b4c648a8b507993f6edaaeee35d01c8c8..87c3d287ff56d82da3163117ed9f144733c9758b 100644
--- a/src/libs/relay/conduit_relay_mpi.hpp
+++ b/src/libs/relay/conduit_relay_mpi.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_silo.cpp b/src/libs/relay/conduit_relay_silo.cpp
index 19d21785b9e80b1a767e70fc763248beea4cd07c..6fe063212f2cef25cda2dc24fed7eb41dc1f0a02 100644
--- a/src/libs/relay/conduit_relay_silo.cpp
+++ b/src/libs/relay/conduit_relay_silo.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_silo.hpp b/src/libs/relay/conduit_relay_silo.hpp
index e55869b41d00466467bdd0db74c13c58e2d4ab0a..b698278d655fc5fd3231c8b5301a6a873b245117 100644
--- a/src/libs/relay/conduit_relay_silo.hpp
+++ b/src/libs/relay/conduit_relay_silo.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_web.cpp b/src/libs/relay/conduit_relay_web.cpp
index 8a600c708cc720c9d496168f774ad318cc075a26..19f4c9428e20c2d0d9ced3a9f3befe2143013c42 100644
--- a/src/libs/relay/conduit_relay_web.cpp
+++ b/src/libs/relay/conduit_relay_web.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_web.hpp b/src/libs/relay/conduit_relay_web.hpp
index e99e995459fb3672b655cebe7f788a9125cd33e9..e5b9fc79967c74bba6f6f76e61ee7b98c05a599b 100644
--- a/src/libs/relay/conduit_relay_web.hpp
+++ b/src/libs/relay/conduit_relay_web.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp b/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp
index 205064bcf5e2d40e6c9fd53bbcfe43259ac7cc90..71082c6c071c42580277d72ad07458603f17d7f8 100644
--- a/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp
+++ b/src/libs/relay/conduit_relay_web_node_viewer_exe.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_web_node_viewer_server.cpp b/src/libs/relay/conduit_relay_web_node_viewer_server.cpp
index dc6c91263fc941eab6b67887f1e5468a58c7f97a..e76a2370a96c111b65bad2125557315fac79819f 100644
--- a/src/libs/relay/conduit_relay_web_node_viewer_server.cpp
+++ b/src/libs/relay/conduit_relay_web_node_viewer_server.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/conduit_relay_web_node_viewer_server.hpp b/src/libs/relay/conduit_relay_web_node_viewer_server.hpp
index 1650709147fd20fa8f99c751f394363bbf45daa9..620cd562e62d966465312c0d05e60eba4dfd9467 100644
--- a/src/libs/relay/conduit_relay_web_node_viewer_server.hpp
+++ b/src/libs/relay/conduit_relay_web_node_viewer_server.hpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/fortran/conduit_relay_fortran.f b/src/libs/relay/fortran/conduit_relay_fortran.f
index 26b811b798859eaea9571450f3259c7791dd1207..e830e26f2544a504e0ff50c088c8a20104386c18 100644
--- a/src/libs/relay/fortran/conduit_relay_fortran.f
+++ b/src/libs/relay/fortran/conduit_relay_fortran.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/libs/relay/python/CMakeLists.txt b/src/libs/relay/python/CMakeLists.txt
index e02fd5df585ac436f8a6983266922fcfe351a38e..707cbf57c4307984599f070ed82689b5f7a790ba 100644
--- a/src/libs/relay/python/CMakeLists.txt
+++ b/src/libs/relay/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/python/conduit_relay_io_python.cpp b/src/libs/relay/python/conduit_relay_io_python.cpp
index 6b834dcb0487e16a8897756e7ddfaac6c53c5ef4..9e9dd0484e2c4fde22f823dcd02c78e95c29d0c5 100644
--- a/src/libs/relay/python/conduit_relay_io_python.cpp
+++ b/src/libs/relay/python/conduit_relay_io_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/python/conduit_relay_python.cpp b/src/libs/relay/python/conduit_relay_python.cpp
index 82a8377aaebe1dff7ef9efb147feeed9f106a5a8..95111aad469dff4adaf268eb59cb7a77ef4b718f 100644
--- a/src/libs/relay/python/conduit_relay_python.cpp
+++ b/src/libs/relay/python/conduit_relay_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/python/conduit_relay_python_exports.h b/src/libs/relay/python/conduit_relay_python_exports.h
index a134482c17989d2ebdeefc2b3756a3901c45bbe4..985bb29b27cd0b9056dcd1674fa98a09c4a6437d 100644
--- a/src/libs/relay/python/conduit_relay_python_exports.h
+++ b/src/libs/relay/python/conduit_relay_python_exports.h
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/python/conduit_relay_web_python.cpp b/src/libs/relay/python/conduit_relay_web_python.cpp
index b677c271b5f5d4f3b05d4c687591845652f3b5e6..01aedd0d21690dc44b193813a765f279e1331640 100644
--- a/src/libs/relay/python/conduit_relay_web_python.cpp
+++ b/src/libs/relay/python/conduit_relay_web_python.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/libs/relay/python/py_src/__init__.py b/src/libs/relay/python/py_src/__init__.py
index 2a69af80b9939990d05c4fb60933012b24d8f547..0aa1969adfc11960c498510bf553f1b95be04b96 100644
--- a/src/libs/relay/python/py_src/__init__.py
+++ b/src/libs/relay/python/py_src/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/python/py_src/io/__init__.py b/src/libs/relay/python/py_src/io/__init__.py
index 24992ec9f9520d73ddc6719f97b97e468b2f8514..115c25d12e679814fe4ed5c2b48991551fd3b7f8 100644
--- a/src/libs/relay/python/py_src/io/__init__.py
+++ b/src/libs/relay/python/py_src/io/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/python/py_src/web/__init__.py b/src/libs/relay/python/py_src/web/__init__.py
index 42374f0cfb8bf2e62457fc94a007fb16380d3c4d..a78d615585880d22aed6254348d338bbec099315 100644
--- a/src/libs/relay/python/py_src/web/__init__.py
+++ b/src/libs/relay/python/py_src/web/__init__.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/scripts/conduit_relay_entangle.py b/src/libs/relay/scripts/conduit_relay_entangle.py
index b48a696228af0796399287ebae339acf6ba3c273..755199bb904ed3d7ef0ba5c4697c1b7baf488aa7 100755
--- a/src/libs/relay/scripts/conduit_relay_entangle.py
+++ b/src/libs/relay/scripts/conduit_relay_entangle.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/index.html b/src/libs/relay/web_clients/node_viewer/index.html
index 913742e6be5ec27d8ab4cacef09b174057615f75..334bd0ca2aeb32f1c6f9b896c2f83e9b0a8fb506 100644
--- a/src/libs/relay/web_clients/node_viewer/index.html
+++ b/src/libs/relay/web_clients/node_viewer/index.html
@@ -1,6 +1,6 @@
 <!-- 
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/launcher.js b/src/libs/relay/web_clients/node_viewer/resources/launcher.js
index ff377d0af01ba950faecaa947f33c0aa1f38201f..2972c9ef9d7fc367ccae8e711a93a95356e880ff 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/launcher.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/launcher.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/search-table.js b/src/libs/relay/web_clients/node_viewer/resources/search-table.js
index 749147c68a7ac5c17cf0f8e6070ee8765a90eb91..bb89a68ec3979ba79642c1d543d07d2aa6e2058f 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/search-table.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/search-table.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/tree.js b/src/libs/relay/web_clients/node_viewer/resources/tree.js
index 142a38dce11fa332eba6f374d60d32e1a7c17e72..3c7f77c9020e23b93c7bfc104cc9a9081d728426 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/tree.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/tree.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/treemap.js b/src/libs/relay/web_clients/node_viewer/resources/treemap.js
index 7bf47a182c604a887404d98f466519900f83d029..dba343f235307c6a489b91622d1317124f0110fa 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/treemap.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/treemap.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/value-table.js b/src/libs/relay/web_clients/node_viewer/resources/value-table.js
index 494c8fd0fcbf3c073cd172e003bf946c5e0b1d95..afc40113ad15834bcd7b47b989234ebb9cfdd524 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/value-table.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/value-table.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js b/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js
index f7f9d4dd98f23d86c6c0036766188ea3ef992551..4693eb996d4eb1fdbde80ccab92c2faad5a038b2 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/visualizer-utils.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/resources/visualizer.js b/src/libs/relay/web_clients/node_viewer/resources/visualizer.js
index 9ad94405a14d6e250833c2df3cb7995c53dc9c7d..608c7fa8715fcac8ebbc126544dd291fc38acf4f 100644
--- a/src/libs/relay/web_clients/node_viewer/resources/visualizer.js
+++ b/src/libs/relay/web_clients/node_viewer/resources/visualizer.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/node_viewer/visualizer.css b/src/libs/relay/web_clients/node_viewer/visualizer.css
index b448653bd90b7ec422d5bbce2a11034d0399b65a..86c505127670f846f174205ec80dbb98a46447d1 100644
--- a/src/libs/relay/web_clients/node_viewer/visualizer.css
+++ b/src/libs/relay/web_clients/node_viewer/visualizer.css
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/wsock_test/index.html b/src/libs/relay/web_clients/wsock_test/index.html
index 0b7d6eb765fb0da8a18cbfb6171363d38d0d87da..716733bcb5ce7754b60fb1781b1e30f65249b3ad 100644
--- a/src/libs/relay/web_clients/wsock_test/index.html
+++ b/src/libs/relay/web_clients/wsock_test/index.html
@@ -1,6 +1,6 @@
 <!-- 
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js b/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js
index 804dfd4a3b32d9662affcbb3948bff0cc233e39b..054e168f3c567626cd0c10f14e2b7362c4d34e0e 100644
--- a/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js
+++ b/src/libs/relay/web_clients/wsock_test/resources/wsock_test.js
@@ -1,6 +1,6 @@
 /*
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index 93d9fddd2f0446140db9abb6ad27cbc7fc609068..b49a0cfa9d84715916fcd8ea5ae13ec180f6e395 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/CMakeLists.txt b/src/tests/blueprint/CMakeLists.txt
index 8a022f64b85d97a69ed73b965eedecabeb7efc2f..ed2602cc1ce4fa9d78a4df854a9c8a41a563c4e6 100644
--- a/src/tests/blueprint/CMakeLists.txt
+++ b/src/tests/blueprint/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/c/CMakeLists.txt b/src/tests/blueprint/c/CMakeLists.txt
index 3389a68c7f8be39e0d67f6ce6a14b62cccfc726c..1b9b14112aafdfc60fa7d8e59fdae9e1f1635c95 100644
--- a/src/tests/blueprint/c/CMakeLists.txt
+++ b/src/tests/blueprint/c/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp b/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp
index a5eb10ccd9c310d1eb779485d38a41d225bf2d5b..1a2bb9100a7881812ebc562132f45732f1bd706a 100644
--- a/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp
+++ b/src/tests/blueprint/c/t_c_blueprint_mcarray.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/blueprint/c/t_c_blueprint_mesh.cpp b/src/tests/blueprint/c/t_c_blueprint_mesh.cpp
index b574a37b81f01197d6092d4f8c08aa1c7f8ef299..e633e80b95792a18cbfb54631c738b85a7ccfcda 100644
--- a/src/tests/blueprint/c/t_c_blueprint_mesh.cpp
+++ b/src/tests/blueprint/c/t_c_blueprint_mesh.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/blueprint/c/t_c_blueprint_smoke.cpp b/src/tests/blueprint/c/t_c_blueprint_smoke.cpp
index d589a860f1c7401cd184efd755175954100b6189..bec095b279e700e581600a51d6df4b8db118350a 100644
--- a/src/tests/blueprint/c/t_c_blueprint_smoke.cpp
+++ b/src/tests/blueprint/c/t_c_blueprint_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/blueprint/fortran/CMakeLists.txt b/src/tests/blueprint/fortran/CMakeLists.txt
index 3d121ea4ced8f568506aa734287ee5794c83d36b..ca4fc3e4adcdd2081d5ea519fe11b0044e3316ca 100644
--- a/src/tests/blueprint/fortran/CMakeLists.txt
+++ b/src/tests/blueprint/fortran/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f b/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f
index 72c0ddfff1013401f35d9142d8f4bb9be9b2a6ad..f01f97733278a024a5bd0a197a16e641ec07347c 100644
--- a/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f
+++ b/src/tests/blueprint/fortran/t_f_blueprint_mcarray.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/blueprint/fortran/t_f_blueprint_mesh.f b/src/tests/blueprint/fortran/t_f_blueprint_mesh.f
index 8a7bf039c5202994edc9d78f69652a8035514eae..4b9a649907787fcb3abd917b4479250652ca86a8 100644
--- a/src/tests/blueprint/fortran/t_f_blueprint_mesh.f
+++ b/src/tests/blueprint/fortran/t_f_blueprint_mesh.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/blueprint/fortran/t_f_blueprint_smoke.f b/src/tests/blueprint/fortran/t_f_blueprint_smoke.f
index dcfaaf89e630d557079765f320dd77f920f49649..bd7fe529c0b990591854d383377a69d3f5a31cc5 100644
--- a/src/tests/blueprint/fortran/t_f_blueprint_smoke.f
+++ b/src/tests/blueprint/fortran/t_f_blueprint_smoke.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/blueprint/python/CMakeLists.txt b/src/tests/blueprint/python/CMakeLists.txt
index 430fb71051dcb2d7b1d660e1a886fa4c05f4cbfe..35c450c752c91547c546a8646d81b242fa679d27 100644
--- a/src/tests/blueprint/python/CMakeLists.txt
+++ b/src/tests/blueprint/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/python/t_python_blueprint_mcarray.py b/src/tests/blueprint/python/t_python_blueprint_mcarray.py
index 8baa54a93e755b431b10e3c3aead0165776dae67..a2d2c9e6cf20e4f8d870d4c5a875e4ffec9a8873 100644
--- a/src/tests/blueprint/python/t_python_blueprint_mcarray.py
+++ b/src/tests/blueprint/python/t_python_blueprint_mcarray.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/python/t_python_blueprint_mesh.py b/src/tests/blueprint/python/t_python_blueprint_mesh.py
index 390124055cb0a142ea6df4858f448f1dfb5ebf6e..26fcc1f66c007584d25f0f7166fc9d7d9642a243 100644
--- a/src/tests/blueprint/python/t_python_blueprint_mesh.py
+++ b/src/tests/blueprint/python/t_python_blueprint_mesh.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/blueprint/python/t_python_blueprint_smoke.py b/src/tests/blueprint/python/t_python_blueprint_smoke.py
index 21313d3ce88dbfd758c9dfd37e65034816bbd591..cd58a31027fa94461a2bd622ab93065d0a9438b6 100644
--- a/src/tests/blueprint/python/t_python_blueprint_smoke.py
+++ b/src/tests/blueprint/python/t_python_blueprint_smoke.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/CMakeLists.txt b/src/tests/conduit/CMakeLists.txt
index d2a3954a20fccda2ea7b6a15dd7c6332a2ce6449..46a4557529d2edbd29b9b7b6fb5e0ab7de33e170 100644
--- a/src/tests/conduit/CMakeLists.txt
+++ b/src/tests/conduit/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/c/CMakeLists.txt b/src/tests/conduit/c/CMakeLists.txt
index da9cdfbfc7d8ff1949e6f97d4ae39a7d2691ee9b..5f91b1726ed16eca2a6b44ed4a4ab17cde67bdc8 100644
--- a/src/tests/conduit/c/CMakeLists.txt
+++ b/src/tests/conduit/c/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/c/t_c_conduit_node.cpp b/src/tests/conduit/c/t_c_conduit_node.cpp
index 2a6874e1e5be8d976ee3bd0911ec326a90c68a04..1a06a22fe236d238ba0ac58b258faafd4db685bf 100644
--- a/src/tests/conduit/c/t_c_conduit_node.cpp
+++ b/src/tests/conduit/c/t_c_conduit_node.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/c/t_c_conduit_node_set.cpp b/src/tests/conduit/c/t_c_conduit_node_set.cpp
index b762a7cd84644ffd70f63fae39b42f9b9c9ab395..51bc8c3c2672bec48ca1b909a1c911f359c95b97 100644
--- a/src/tests/conduit/c/t_c_conduit_node_set.cpp
+++ b/src/tests/conduit/c/t_c_conduit_node_set.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/c/t_c_conduit_smoke.cpp b/src/tests/conduit/c/t_c_conduit_smoke.cpp
index 938519a2568a7465dd3db52ea951af9f382c6cb7..02a27738c5b50ed79d4273c7715bbf9105254811 100644
--- a/src/tests/conduit/c/t_c_conduit_smoke.cpp
+++ b/src/tests/conduit/c/t_c_conduit_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/fortran/CMakeLists.txt b/src/tests/conduit/fortran/CMakeLists.txt
index d2c9e113e95cb09bce2f3c2300ebcdd69e34a775..20883363b579db7f2328eb09efd86e6ec1a3244b 100644
--- a/src/tests/conduit/fortran/CMakeLists.txt
+++ b/src/tests/conduit/fortran/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/fortran/t_f_conduit_node.f b/src/tests/conduit/fortran/t_f_conduit_node.f
index e701b9df46df6993e0a54fa65c146cca62afcc5b..5d59d3073d152212c070a022430cd57a82b68968 100644
--- a/src/tests/conduit/fortran/t_f_conduit_node.f
+++ b/src/tests/conduit/fortran/t_f_conduit_node.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f b/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f
index 2b384c2465a0f20bae07496ed0e7aee8ca2e0c08..31ee7d22acf9d2c989aa36f356c5165eb4dc036e 100644
--- a/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f
+++ b/src/tests/conduit/fortran/t_f_conduit_node_char8_str.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_conduit_node_float.f b/src/tests/conduit/fortran/t_f_conduit_node_float.f
index 42626135cd89abb34e737dca1b3e05acbd792701..bd654384f7483445c7801f83dc76c1e690ee65b6 100644
--- a/src/tests/conduit/fortran/t_f_conduit_node_float.f
+++ b/src/tests/conduit/fortran/t_f_conduit_node_float.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_conduit_node_int.f b/src/tests/conduit/fortran/t_f_conduit_node_int.f
index 93d713287d5fe351f4a7e37444ade9c8b767818f..78d17b27f1b7a3fb3bff27db5cded1adf96494d4 100644
--- a/src/tests/conduit/fortran/t_f_conduit_node_int.f
+++ b/src/tests/conduit/fortran/t_f_conduit_node_int.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_conduit_node_obj.f b/src/tests/conduit/fortran/t_f_conduit_node_obj.f
index 2969f7d66dbfdeb5894da4666c2aba037f3f9a17..2fd7648eaef581453caf604767313df830671903 100644
--- a/src/tests/conduit/fortran/t_f_conduit_node_obj.f
+++ b/src/tests/conduit/fortran/t_f_conduit_node_obj.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_conduit_smoke.f b/src/tests/conduit/fortran/t_f_conduit_smoke.f
index d2d58853bedb68d3a9c403174f2dfe23d9e54859..693083e5db785eef1fb625b3edcec6eeec9bdf7c 100644
--- a/src/tests/conduit/fortran/t_f_conduit_smoke.f
+++ b/src/tests/conduit/fortran/t_f_conduit_smoke.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/fortran/t_f_type_sizes.f b/src/tests/conduit/fortran/t_f_type_sizes.f
index 3ddc47640b49db6e7a9e56874fe99cd11a22c143..6a1a5de76f4c356ea3a3ffaabc1f30403a4c5ad8 100644
--- a/src/tests/conduit/fortran/t_f_type_sizes.f
+++ b/src/tests/conduit/fortran/t_f_type_sizes.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/conduit/python/CMakeLists.txt b/src/tests/conduit/python/CMakeLists.txt
index f5528efda140360de1816aa3b63c287e41e860dd..4f6811a77256280dc38388bfc399b6ff9115e46e 100644
--- a/src/tests/conduit/python/CMakeLists.txt
+++ b/src/tests/conduit/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_datatype.py b/src/tests/conduit/python/t_python_conduit_datatype.py
index f5d3972e921dc5dabbc2ff8c8a21cf785e743a49..e5ad1e86bf56c3b85cd9f48011a651741b43a857 100644
--- a/src/tests/conduit/python/t_python_conduit_datatype.py
+++ b/src/tests/conduit/python/t_python_conduit_datatype.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_generator.py b/src/tests/conduit/python/t_python_conduit_generator.py
index c29c0879fbc046e15ada682be1a93a892544af13..b2f8e7547e49c5ba624182a5ccb23c3015aad19c 100644
--- a/src/tests/conduit/python/t_python_conduit_generator.py
+++ b/src/tests/conduit/python/t_python_conduit_generator.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_node.py b/src/tests/conduit/python/t_python_conduit_node.py
index d03809145acf0fa156b12647d5edc704ff7cd071..45f3194297b876363cad88ca38c899888b55bac6 100644
--- a/src/tests/conduit/python/t_python_conduit_node.py
+++ b/src/tests/conduit/python/t_python_conduit_node.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_node_iterator.py b/src/tests/conduit/python/t_python_conduit_node_iterator.py
index a3e2e3b3a4eee0c19ff2349962c26d65c2889d8a..732f48525544e7827bd16d29f27dbc15af0d3340 100644
--- a/src/tests/conduit/python/t_python_conduit_node_iterator.py
+++ b/src/tests/conduit/python/t_python_conduit_node_iterator.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_schema.py b/src/tests/conduit/python/t_python_conduit_schema.py
index bc76d3b54aec7c390eaff083df9d68debc887d16..de4e919faa5118783d3cbc8476709d66a7f17850 100644
--- a/src/tests/conduit/python/t_python_conduit_schema.py
+++ b/src/tests/conduit/python/t_python_conduit_schema.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/python/t_python_conduit_smoke.py b/src/tests/conduit/python/t_python_conduit_smoke.py
index 12c666c7caabf53b55ace1285887d9cb6d2f4b32..401be45c1d58ad4bf257b427f10f22a887ca5dae 100644
--- a/src/tests/conduit/python/t_python_conduit_smoke.py
+++ b/src/tests/conduit/python/t_python_conduit_smoke.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/conduit/t_conduit_array.cpp b/src/tests/conduit/t_conduit_array.cpp
index d9a787b7e0d20a0747a7c81c1c49fc5fb528ed27..3b8c17c5c0573580ba0e6aee4f0ab9ca1ac142ac 100644
--- a/src/tests/conduit/t_conduit_array.cpp
+++ b/src/tests/conduit/t_conduit_array.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_char8_str.cpp b/src/tests/conduit/t_conduit_char8_str.cpp
index 5f4c7676b77b5583366ab9333fea178f8520b3f5..7c52bdcb830b141c2123f5654c79690d007e7407 100644
--- a/src/tests/conduit/t_conduit_char8_str.cpp
+++ b/src/tests/conduit/t_conduit_char8_str.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_datatype_tests.cpp b/src/tests/conduit/t_conduit_datatype_tests.cpp
index bd8de04466a8fb056f9628c136d5e105a396864d..0f15e42f024580189d72a50f6ff32375d494e069 100644
--- a/src/tests/conduit/t_conduit_datatype_tests.cpp
+++ b/src/tests/conduit/t_conduit_datatype_tests.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_endianness.cpp b/src/tests/conduit/t_conduit_endianness.cpp
index 399aa8ad5f4bc7777b1b9c9d1eb2a29410b98a06..f8e6eba9930b9536beba3e404c2201ccf3290754 100644
--- a/src/tests/conduit/t_conduit_endianness.cpp
+++ b/src/tests/conduit/t_conduit_endianness.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_generator.cpp b/src/tests/conduit/t_conduit_generator.cpp
index 6e2145ba24ad7543e06e32b35df8c78e12d1530d..b71f53fdb6124dbd30e0c1c61f6abcf538a2f519 100644
--- a/src/tests/conduit/t_conduit_generator.cpp
+++ b/src/tests/conduit/t_conduit_generator.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_json.cpp b/src/tests/conduit/t_conduit_json.cpp
index 4c273084344865d110d099c765dc332b587f607d..bae451359af1522ae8ff58b9c150b3dee9959309 100644
--- a/src/tests/conduit/t_conduit_json.cpp
+++ b/src/tests/conduit/t_conduit_json.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_json_sanitize.cpp b/src/tests/conduit/t_conduit_json_sanitize.cpp
index 12c1be63be6b6f9881c3def53d927a4a5d7417c8..da0a38ecb1378c7be09cdc1ca87f2a2a7fa418be 100644
--- a/src/tests/conduit/t_conduit_json_sanitize.cpp
+++ b/src/tests/conduit/t_conduit_json_sanitize.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_list_of.cpp b/src/tests/conduit/t_conduit_list_of.cpp
index e208057a3babad9b3facad1d7e726dfbd58d2ac4..03cd60cbae3cf2e30f147198cf5d8ca085607e01 100644
--- a/src/tests/conduit/t_conduit_list_of.cpp
+++ b/src/tests/conduit/t_conduit_list_of.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node.cpp b/src/tests/conduit/t_conduit_node.cpp
index 6711bf8080bdaf101f33861a8347da2cb23a435d..a28b02f8add84ea79535bd9f1414dd0b56d12859 100644
--- a/src/tests/conduit/t_conduit_node.cpp
+++ b/src/tests/conduit/t_conduit_node.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_binary_io.cpp b/src/tests/conduit/t_conduit_node_binary_io.cpp
index d6f171fa76dfcbff2d8b8c8b964bb792bcadfb2c..af769a26c8a0771936ea6fb493dff14e99f6c321 100644
--- a/src/tests/conduit/t_conduit_node_binary_io.cpp
+++ b/src/tests/conduit/t_conduit_node_binary_io.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_compact.cpp b/src/tests/conduit/t_conduit_node_compact.cpp
index 85ce305d0318b955d159ec336b50630c64660d61..aed7a246df583f017c224a9762cdd819158e2f16 100644
--- a/src/tests/conduit/t_conduit_node_compact.cpp
+++ b/src/tests/conduit/t_conduit_node_compact.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_convert.cpp b/src/tests/conduit/t_conduit_node_convert.cpp
index cc5240d935661d7d9c16077c7a5ad1fef2363588..8ab59076023c30d5295ab62f49b238b1462fbe2e 100644
--- a/src/tests/conduit/t_conduit_node_convert.cpp
+++ b/src/tests/conduit/t_conduit_node_convert.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_info.cpp b/src/tests/conduit/t_conduit_node_info.cpp
index 2ace3995b362b61f262925a98befe42457417833..4e641aeb31bfa18e63f68963eb05fb06b6cfc840 100644
--- a/src/tests/conduit/t_conduit_node_info.cpp
+++ b/src/tests/conduit/t_conduit_node_info.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_iterator.cpp b/src/tests/conduit/t_conduit_node_iterator.cpp
index d94e7276e276b4f83ee5b3c42377f6d5e1069769..d3c29c6af0eb3c0513e5d812776a3fdc5c371136 100644
--- a/src/tests/conduit/t_conduit_node_iterator.cpp
+++ b/src/tests/conduit/t_conduit_node_iterator.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_parent.cpp b/src/tests/conduit/t_conduit_node_parent.cpp
index 2f71391e786f5da66ee69a09c3d8cbc4f5a9465c..a85192c89be29d621d8fade1f5e1e9e64309d3be 100644
--- a/src/tests/conduit/t_conduit_node_parent.cpp
+++ b/src/tests/conduit/t_conduit_node_parent.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_paths.cpp b/src/tests/conduit/t_conduit_node_paths.cpp
index d53ce8511c6fb8c3db35e444078078c9f83c63d2..0b7c82cc2dfa496a785748e6457c357b05dcd533 100644
--- a/src/tests/conduit/t_conduit_node_paths.cpp
+++ b/src/tests/conduit/t_conduit_node_paths.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_save_load.cpp b/src/tests/conduit/t_conduit_node_save_load.cpp
index e9f92ffab9f5e716eed43211e40a71836e634758..520bb2610d34ec1a83f4f9556b3015319709c128 100644
--- a/src/tests/conduit/t_conduit_node_save_load.cpp
+++ b/src/tests/conduit/t_conduit_node_save_load.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_set.cpp b/src/tests/conduit/t_conduit_node_set.cpp
index bbc68b555c34566bd55f7145b829e69e84dd8edf..c3a10d7bde42b1ddcb756ac6294f4e30521d42f1 100644
--- a/src/tests/conduit/t_conduit_node_set.cpp
+++ b/src/tests/conduit/t_conduit_node_set.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_to_value.cpp b/src/tests/conduit/t_conduit_node_to_value.cpp
index 23615f4c03a9d817f86f1ffa4a5458405e93853f..ed79388aece4ca9dba4c3ddeeecf08f3b1f44d1b 100644
--- a/src/tests/conduit/t_conduit_node_to_value.cpp
+++ b/src/tests/conduit/t_conduit_node_to_value.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_node_update.cpp b/src/tests/conduit/t_conduit_node_update.cpp
index 3322f7a513a0c33342b4458a7969e4d88bf65a68..f6b824a8ffd0d7af49b1f4a4695ff1e8570bed52 100644
--- a/src/tests/conduit/t_conduit_node_update.cpp
+++ b/src/tests/conduit/t_conduit_node_update.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_serialize.cpp b/src/tests/conduit/t_conduit_serialize.cpp
index 1b8e11e0ee6c666ac4dbb282c1c3eeee7f34ff8a..e3c06d817000253d23d75e4c5bd3bdb3abb50c23 100644
--- a/src/tests/conduit/t_conduit_serialize.cpp
+++ b/src/tests/conduit/t_conduit_serialize.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_smoke.cpp b/src/tests/conduit/t_conduit_smoke.cpp
index 8ab9703b6edcea76e6588f9dc072ed0522ea9268..14d9fe0b23acfef5c7ee4673616795e9470e0453 100644
--- a/src/tests/conduit/t_conduit_smoke.cpp
+++ b/src/tests/conduit/t_conduit_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_to_string.cpp b/src/tests/conduit/t_conduit_to_string.cpp
index 11ec829a3eba0cb853d3012d4d1e41ace0002451..9985be8defd353711b71ab2ee19b38c3ed3e43a5 100644
--- a/src/tests/conduit/t_conduit_to_string.cpp
+++ b/src/tests/conduit/t_conduit_to_string.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/conduit/t_conduit_utils.cpp b/src/tests/conduit/t_conduit_utils.cpp
index 6096ef1b9a70828f593f7726482c3227ef206afb..1f2c7b345203e7aca91cc662434f86e239c690f4 100644
--- a/src/tests/conduit/t_conduit_utils.cpp
+++ b/src/tests/conduit/t_conduit_utils.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/docs/CMakeLists.txt b/src/tests/docs/CMakeLists.txt
index 798c2fa6bc1690378266dd264952e7f252f88c8f..e581555506572aa3683df91978cb11caa7756d22 100644
--- a/src/tests/docs/CMakeLists.txt
+++ b/src/tests/docs/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/docs/t_conduit_docs_blueprint_examples.cpp b/src/tests/docs/t_conduit_docs_blueprint_examples.cpp
index b525ee357e7e82e44f31ea94e1c589e52484c6d1..e46947b8b6e4e349d01afb553e35a0888603d2cb 100644
--- a/src/tests/docs/t_conduit_docs_blueprint_examples.cpp
+++ b/src/tests/docs/t_conduit_docs_blueprint_examples.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/docs/t_conduit_docs_tutorial_examples.cpp b/src/tests/docs/t_conduit_docs_tutorial_examples.cpp
index aa934f289b0262734f39489f51aaf81803f15bbf..4aec58c273190a98dbd193725d322962949d8ba2 100644
--- a/src/tests/docs/t_conduit_docs_tutorial_examples.cpp
+++ b/src/tests/docs/t_conduit_docs_tutorial_examples.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/CMakeLists.txt b/src/tests/relay/CMakeLists.txt
index 953d7e4560d588238f636a0da582db31683156f9..4e329815afde886ec10dcd1fff1782d515202511 100644
--- a/src/tests/relay/CMakeLists.txt
+++ b/src/tests/relay/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/c/CMakeLists.txt b/src/tests/relay/c/CMakeLists.txt
index ce9a85f8bceb2647e5bb836a945b8ba45ca1fd58..409c69a3ceb4180a7b92ed041328d9de0c28cc44 100644
--- a/src/tests/relay/c/CMakeLists.txt
+++ b/src/tests/relay/c/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/c/t_c_relay_smoke.cpp b/src/tests/relay/c/t_c_relay_smoke.cpp
index 69c18aafcdb41b06f661c3f8831cbb373de7163f..392501c066237f893aea0a2ff1309d1a0d5394ee 100644
--- a/src/tests/relay/c/t_c_relay_smoke.cpp
+++ b/src/tests/relay/c/t_c_relay_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/fortran/CMakeLists.txt b/src/tests/relay/fortran/CMakeLists.txt
index bd1e5c8b5999ca2d581a9d8050962c9bf9475eda..0130c1b24f683623bab3741d4d03dcc0b9fa0fd7 100644
--- a/src/tests/relay/fortran/CMakeLists.txt
+++ b/src/tests/relay/fortran/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/fortran/t_f_relay_smoke.f b/src/tests/relay/fortran/t_f_relay_smoke.f
index fd5f3fa4775ec5dd0f3f69db5dca7efb24c4b7a4..e08b27d731abe145c2b917916b36f4ff5e53281b 100644
--- a/src/tests/relay/fortran/t_f_relay_smoke.f
+++ b/src/tests/relay/fortran/t_f_relay_smoke.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/relay/python/CMakeLists.txt b/src/tests/relay/python/CMakeLists.txt
index 48c381cc3a45b6f3e6afed916ea3d26517375387..9f58ef6057c821117157c9796e6f4b6d3f148849 100644
--- a/src/tests/relay/python/CMakeLists.txt
+++ b/src/tests/relay/python/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/python/t_python_relay_io.py b/src/tests/relay/python/t_python_relay_io.py
index 12f8756af80ab820091844332edcb21193010ada..410b8ec48a2e385a20488388cdf7635e7f5bcbcd 100644
--- a/src/tests/relay/python/t_python_relay_io.py
+++ b/src/tests/relay/python/t_python_relay_io.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/python/t_python_relay_smoke.py b/src/tests/relay/python/t_python_relay_smoke.py
index 316a5ab5ccbd25da8e41f097a6b8065311fa01bc..f2e05a0fad2bb5fda413a517cf8e1f9d35bc4927 100644
--- a/src/tests/relay/python/t_python_relay_smoke.py
+++ b/src/tests/relay/python/t_python_relay_smoke.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/python/t_python_relay_web.py b/src/tests/relay/python/t_python_relay_web.py
index f02041a86897cf56d385853a847198dbcdbc11d5..8066cfd68bf7705b49c0fd569084f5bb259e6e72 100644
--- a/src/tests/relay/python/t_python_relay_web.py
+++ b/src/tests/relay/python/t_python_relay_web.py
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/tests/relay/t_relay_io_basic.cpp b/src/tests/relay/t_relay_io_basic.cpp
index a7081b813b02bab9e576d97e5c952f731761225f..457c8ac3d5ce6315cccfce09c54be0ec6ee3740c 100644
--- a/src/tests/relay/t_relay_io_basic.cpp
+++ b/src/tests/relay/t_relay_io_basic.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_io_hdf5.cpp b/src/tests/relay/t_relay_io_hdf5.cpp
index 4bb953c0421be43f9caf306ccbaa681d2b02d843..8c8069cbc443c868367cb4df1c115eba6ea844b2 100644
--- a/src/tests/relay/t_relay_io_hdf5.cpp
+++ b/src/tests/relay/t_relay_io_hdf5.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp b/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp
index bd0e6dfad6ad5718cab687ed10235b445fa18b0d..ffbc50337214c6d577ff133d149e6ecf00da606a 100644
--- a/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp
+++ b/src/tests/relay/t_relay_io_hdf5_read_and_print.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_io_silo.cpp b/src/tests/relay/t_relay_io_silo.cpp
index 2dbda0f96b1d929bf475262d1a1dad1bf0139733..aee23cdf5bfde910e238dbdcba0bd2213fd90991 100644
--- a/src/tests/relay/t_relay_io_silo.cpp
+++ b/src/tests/relay/t_relay_io_silo.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_mpi_smoke.cpp b/src/tests/relay/t_relay_mpi_smoke.cpp
index 47c117b511f7beb8ed97723200ba9f8e9ee6b3aa..fc76187c7519ff60c6792874db0b18967bf71aeb 100644
--- a/src/tests/relay/t_relay_mpi_smoke.cpp
+++ b/src/tests/relay/t_relay_mpi_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_mpi_test.cpp b/src/tests/relay/t_relay_mpi_test.cpp
index f4eda7412428ff62dba0928d48aed37babc853f7..c48092f8e5c2260aa04309357db75e0eb447054e 100644
--- a/src/tests/relay/t_relay_mpi_test.cpp
+++ b/src/tests/relay/t_relay_mpi_test.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_node_viewer.cpp b/src/tests/relay/t_relay_node_viewer.cpp
index 7db2bb583142cff434ba6aef9e55da197ed204ad..6bc568735131f9640016f1696dd74f878844dc16 100644
--- a/src/tests/relay/t_relay_node_viewer.cpp
+++ b/src/tests/relay/t_relay_node_viewer.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_smoke.cpp b/src/tests/relay/t_relay_smoke.cpp
index 92a1b32fbb0ecdf82f1de5e3b6786a80592eacb3..1f269abf490ec8091d1df1c01815c41737823a9b 100644
--- a/src/tests/relay/t_relay_smoke.cpp
+++ b/src/tests/relay/t_relay_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/relay/t_relay_websocket.cpp b/src/tests/relay/t_relay_websocket.cpp
index 4aa993592374b4698a1279e3a84faaf19249e84f..b8aead395506d34291242892bb2846051c048ca4 100644
--- a/src/tests/relay/t_relay_websocket.cpp
+++ b/src/tests/relay/t_relay_websocket.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/t_config.hpp.in b/src/tests/t_config.hpp.in
index fe071444c530f84c2974953c2d0b858f4269bbe0..7ab8b62b21297e5e80eaf85e0a4bd80eac3c6f22 100644
--- a/src/tests/t_config.hpp.in
+++ b/src/tests/t_config.hpp.in
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/CMakeLists.txt b/src/tests/thirdparty/CMakeLists.txt
index cf4c5bd624bba5103e8ea87690233750bdffa3e0..c5560961e27c3500ce01100fc3fe1ea3621708de 100644
--- a/src/tests/thirdparty/CMakeLists.txt
+++ b/src/tests/thirdparty/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/tests/thirdparty/t_civetweb_smoke.cpp b/src/tests/thirdparty/t_civetweb_smoke.cpp
index 958ea992f2be2542361dc884bedde02a969090b7..f02f4f534676929978993d6c9462f5059334af01 100644
--- a/src/tests/thirdparty/t_civetweb_smoke.cpp
+++ b/src/tests/thirdparty/t_civetweb_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_fortran_smoke.f b/src/tests/thirdparty/t_fortran_smoke.f
index ca621c85f1c0dbd82452e1c5fcd8737e3ab4afe8..8404d761ffeb00929e0175f8a8dbfe5f9cffaf8d 100644
--- a/src/tests/thirdparty/t_fortran_smoke.f
+++ b/src/tests/thirdparty/t_fortran_smoke.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/thirdparty/t_fruit_smoke.f b/src/tests/thirdparty/t_fruit_smoke.f
index 94793eadaac043e8d41eb6aace1cd6dd5950421b..ea44528a79a598241ae527e3da08f5a64019a895 100644
--- a/src/tests/thirdparty/t_fruit_smoke.f
+++ b/src/tests/thirdparty/t_fruit_smoke.f
@@ -1,5 +1,5 @@
 !*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*!
-!* Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+!* Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 !* 
 !* Produced at the Lawrence Livermore National Laboratory
 !* 
diff --git a/src/tests/thirdparty/t_gtest_smoke.cpp b/src/tests/thirdparty/t_gtest_smoke.cpp
index 3cabc2ab0829aabc2ef275c78050b33fc7f73297..4cb644c903ded714beffbb9eb1e53eb559a4ac3d 100644
--- a/src/tests/thirdparty/t_gtest_smoke.cpp
+++ b/src/tests/thirdparty/t_gtest_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_hdf5_smoke.cpp b/src/tests/thirdparty/t_hdf5_smoke.cpp
index e0e152d828978b60b41c99d3e68c3d050df00e47..dc61afdbcd3588f614535416d609042d0680cc33 100644
--- a/src/tests/thirdparty/t_hdf5_smoke.cpp
+++ b/src/tests/thirdparty/t_hdf5_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_libb64_smoke.cpp b/src/tests/thirdparty/t_libb64_smoke.cpp
index 6c50da6336648463946de047b60961816092f1ea..ff102ad1974495fd25f8bd91079a7ba7f0cfad8c 100644
--- a/src/tests/thirdparty/t_libb64_smoke.cpp
+++ b/src/tests/thirdparty/t_libb64_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_mpi_smoke.cpp b/src/tests/thirdparty/t_mpi_smoke.cpp
index 39eebdbdbed60cb99f1a0689db6a0ffa0870c20c..9d0355d8a98e4063f0121c2986218e1cb1f5b6bf 100644
--- a/src/tests/thirdparty/t_mpi_smoke.cpp
+++ b/src/tests/thirdparty/t_mpi_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_numpy_smoke.cpp b/src/tests/thirdparty/t_numpy_smoke.cpp
index b6405040810829af45669d75dbc719bb24517e13..5b49b54d2fb689ff060f4805ef1c9ff6a027e762 100644
--- a/src/tests/thirdparty/t_numpy_smoke.cpp
+++ b/src/tests/thirdparty/t_numpy_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_rapidjson_smoke.cpp b/src/tests/thirdparty/t_rapidjson_smoke.cpp
index bb1dd0b1f604a807999919f65de82a09a1b38139..d19a898be426c866c392c3a96b77001a48c63934 100644
--- a/src/tests/thirdparty/t_rapidjson_smoke.cpp
+++ b/src/tests/thirdparty/t_rapidjson_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/tests/thirdparty/t_silo_smoke.cpp b/src/tests/thirdparty/t_silo_smoke.cpp
index aa098d4fc0f5c9ac9de0f8333c1082cd34b374ca..5e161accfd5402383ca8936b768bbe2d7657afb3 100644
--- a/src/tests/thirdparty/t_silo_smoke.cpp
+++ b/src/tests/thirdparty/t_silo_smoke.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt b/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt
index 300e7d401fa826f911f8202b6ba0c0b536a6c016..3ea26eb3ef49fe2e051c73f4153a587e8c1b8c76 100644
--- a/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt
+++ b/src/thirdparty_builtin/civetweb-0a95342/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #
diff --git a/src/thirdparty_builtin/fruit-3.3.9/CMakeLists.txt b/src/thirdparty_builtin/fruit-3.3.9/CMakeLists.txt
index eebb8350f87bed6114ed0c0451d90134330526e2..98a24b68f2a0cdb9df3c156af7a4ec03cfdf1c99 100644
--- a/src/thirdparty_builtin/fruit-3.3.9/CMakeLists.txt
+++ b/src/thirdparty_builtin/fruit-3.3.9/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 # 
 # Produced at the Lawrence Livermore National Laboratory
 # 
diff --git a/src/thirdparty_builtin/fruit-3.3.9/gtest_fortran_driver.cpp b/src/thirdparty_builtin/fruit-3.3.9/gtest_fortran_driver.cpp
index 78521b8148e79b4396f92f021e44a80b7019f3c3..6bdc0e7b489d6133b558ada0496a8c38f938c245 100644
--- a/src/thirdparty_builtin/fruit-3.3.9/gtest_fortran_driver.cpp
+++ b/src/thirdparty_builtin/fruit-3.3.9/gtest_fortran_driver.cpp
@@ -1,5 +1,5 @@
 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
-// Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+// Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 // 
 // Produced at the Lawrence Livermore National Laboratory
 // 
diff --git a/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt b/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt
index 8d67611fd2ea1d2047185df03603cb8351e8cff9..720c127add160ad02c19d0bb82e3b908c6f79fe6 100644
--- a/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt
+++ b/src/thirdparty_builtin/libb64-1.2.1/CMakeLists.txt
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC.
+# Copyright (c) 2014-2017, Lawrence Livermore National Security, LLC.
 #
 # Produced at the Lawrence Livermore National Laboratory
 #